1 //1.bind 2 $("#id").bind(‘input propertychange‘,function(){ 3 4 }); 5 6 //2.live 7 $("#id").live(‘input propertychange‘,function(){ 8 9 }); 10 11
bind:在绑定bind时就会判断绑定对象是否存在,只针对于当前对象绑定,js等新生成后增加元素不能绑定
live:弥补bind缺陷,对js等新生成的元素也进行绑定
时间: 2024-11-13 01:19:01