jquery on 动态绑定点击事件

jQuery on()方法绑定动态元素的点击事件无响应的解决办法

作者:山档子 字体:[增加 减小] 类型:转载 时间:2016-07-07 我要评论

这篇文章主要介绍了jQuery on()方法绑定动态元素的点击事件无响应的解决办法的相关资料,非常不错,具有参考借鉴价值,需要的朋友可以参考下
?
1
2
3
4
5
6
$( '#check_all' ).on( 'click' , function (){
alert(1);
});
$( "#yujinlist" ).append(html);
count++;
}

以上代码执行时,点击#check_all时,alert一直没反应,后在网上查资料时,才知道on前面的元素也必须在页面加载的时候就存在于dom里面, 那原话是这样的:

支持给动态元素和属性绑定事件的是live和on,其中live在JQUERY 1.7之后就不推荐使用了。现在主要用on,使用on的时候也要注意,on前面的元素也必须在页面加载的时候就存在于dom里面。动态的元素或者样式等,可以放在on的第二个参数里面。

因为我先输出相关html,再执行就没问题了。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
"row" >\
"col-xs-12" >\
"control-group" >\
\
"row" >\
"checkbox col-xs-1" >\
"checkbox" class= "checkbox" id= "check_all" />\
"lbl" >全区\
\
\
"check_item" >\
"checkbox col-xs-1 " >\
"towm'+count+'" type= "checkbox" class= "checkbox" />\
"lbl" >西南街道\
\
\
"checkbox col-xs-1 " >\
"towm'+count+'" type= "checkbox" class= "checkbox" />\
"lbl" >云东海街道\
\
\
"checkbox col-xs-1" >\
"towm'+count+'" type= "checkbox" class= "checkbox" />\
"lbl" >白坭镇\
\
\
"checkbox col-xs-1" >\
"towm'+count+'" type= "checkbox" class= "checkbox" />\
"lbl" >乐平镇\
\
\
"checkbox col-xs-1" >\
"towm'+count+'" type= "checkbox" class= "checkbox" />\
"lbl" >大塘镇\
\
\
"checkbox col-xs-1" >\
"towm'+count+'" type= "checkbox" class= "checkbox" />\
"lbl" >芦苞镇\
\
\
"checkbox col-xs-1" >\
"towm'+count+'" type= "checkbox" class= "checkbox" />\
"lbl" >南山镇\
\
\
\
\
\
\
\

';
$(' #check_all').on('click' , function(){
var that = this ;
$(' #check_item').find('input:checkbox')
.each( function (){
alert(2);
this .checked = that.checked;
$( this ).closest('.col-xs-1 ').toggleClass(' selected');
});
});

下面看下jquery on() 方法绑定动态元素

jQuery on()方法是官方推荐的绑定事件的一个方法。使用 on() 方法可以给将来动态创建的动态元素绑定指定的事件,例如append等。

?
1
2
3
"test" >
"evt" >evt1

错误的用法,下面方法只为第一个class 为 evt 的div 绑定了click事件,使用append动态创建的div则没有绑定

?
1
2
3
4
5

正确的用法如下:

?
1
2
3
4

以上所述是小编给大家介绍的jQuery on()方法绑定动态元素的点击事件无响应的解决办法,希望对大家有所帮助

你可能感兴趣的:(jquery on 动态绑定点击事件)