묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
멀티 셀렉트 도와주세요 ㅠㅠ
2015.05.06 12:03
댓글 5
-
하늘희
2015.05.06 12:26
-
이온디
2015.05.06 13:03
네 감사합니다.
그런데 이렇게 아이디로 구분할 수도 있는데,
저는 siblings 나 이런 속성을 써서 아이디를 안 써줘도 알아서 찾아서 돌아가게 하고 싶었거든요^^;
$(id+" .sel_input").val($val); 이렇게 써주셨는데 아이디로 말고 children 이나 이런 걸 써서 할 수는 없을까요^^;
-
하늘희
2015.05.06 13:25
$(document).ready(function(){ $('.sel').on("click",function(){ $(this).siblings(".sel_opt").toggle(); $(".sel_opt li").on("click",function(){ if($(this).text()=="직접입력"){ $(this).closest('.select_wrap').find(".sel_input").attr("readonly",false).focus().val(""); $(this).closest('.select_wrap').find(".sel_opt").hide(); } else{ var $val=$(this).text(); $(this).closest('.select_wrap').find(".sel_input").val($val); $(this).closest('.select_wrap').find(".sel_opt").hide(); } }); }); });
-
이온디
2015.05.06 13:37
감사합니다^^;
-
이온디
2015.05.06 13:34
$(document).ready(function(){
$('.sel').on("click",function(){
$(this).siblings(".sel_opt").toggle();
$(".sel_opt li").on("click",function(){
if($(this).text()=="직접입력"){
$(this).parent().prev().prev().attr("readonly",false).focus().val("");
$(".sel_opt").hide();
}
else{
var $val=$(this).text();
$(this).parent().prev().prev().val($val);
$(".sel_opt").hide();
}
});
});
});이렇게 찾긴 했는데 좀 이상하긴 하네요 ㅎㅎ;;
그냥 두가지를 따로 작동할 수 있게 해달라는 건가..
custom_select_multi (2).zip