$(function(){ //■■■■ notice_box OPEN&CLOSE ■■■■ $(".notice_box h4").on('click', function(){ $(this).next("div").slideToggle(400); if( $(this).hasClass("on") ) $(this).removeClass("on"); else $(this).addClass("on"); }); $frinendBox = $(".friend_box"); $(".friend_midasi").hide(); $frinendBox.hide(); dispFriendBox(); $(".count_wd").change(function(){ dispFriendBox(); }); function dispFriendBox() { idx = Number($(".count_wd").val()) -1; $frinendBox.hide(); if( idx == 0 ){ $(".friend_midasi").hide(); $frinendBox.hide(); }else{ $(".friend_midasi").show(); for(i=1; i<=idx; i++){ $frinendBox.eq(i-1).show(); } } } });