1
2
3
4
|
$(
"#checkboxbrand input[type='checkbox']"
).on(
'click'
,function(){
alert(
"asdsad"
);
})
|
1
|
checkboxbrand 下面有动态给checkbox 当翻页的时候,以上方法点击复选框不会触发事件
|
1
2
3
4
|
$(
"body"
).delegate(
"#checkboxbrand input[type='checkbox']"
,
"click"
,function(){
alert(
""
)
});
|
1
|
checkboxbrand 下面有动态给checkbox 当翻页的时候,以上方法点击复选框会有相应事件发生
|