dom 요소가 추가되면 이벤트를 터치하지 않습니다

1147 단어



checkbox 






사과.
수박.
바나나
복숭아
망고

$(document).ready(function(){

$("#checkboxDiv").on("click", "<span style="font-size: 16px;"><strong><span style="color: #ff0000;">input</span></strong></span>", function(){
if($(this).is(':checked')){
$(this).attr('checked',true).siblings().attr('checked',false);&#십삼;
}else{
$(this).attr('checked',false).siblings().attr('checked',false);&#십삼;
}
})

$("#add").click(function(){
$("#checkboxDiv").append("<input type='checkbox'name='checkboxName'value='6'/gt;배 <br/>');&#십삼;
})
});&#십삼;

추가된 요소는 $("#상위 요소") 내에 있어야 합니다.

좋은 웹페이지 즐겨찾기