欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Jquery事件绑定实例学习之动态绑定和静态绑定

程序员文章站 2022-08-09 09:18:38
jquery 事件绑定---动态绑定和静态绑定 1.静态元素绑定: 方法一: [html] view plain copy

jquery 事件绑定---动态绑定和静态绑定

1.静态元素绑定:

方法一:

[html] view plain copy

<span style="font-size:14px;">$('#btn_submit').click(function(){  

});</span>  

方法二:直接在button标签中使用onclick绑定

[html] view plain copy

<span style="font-size:16px;"><button type="submit" id="btn_submit" onclick="btnaction()"> submit </button></span>  

方法三:使用bind函数

[html] view plain copy

<span style="font-size:16px;">$('#btn').bind("click",function(){  

    omething();  

})</span>  

方法四:使用on函数

[html] view plain copy

<span style="font-size:16px;">$('#btn').on("click",function(){  

    dosomething();  

})  

</span>  

动态元素绑定:

1.例子1:

[html] view plain copy

$("table").on("click","input[name='result']",function(){  

     var len = $(this).parent().siblings().children("input").attr("checked",false);  

     $(this).attr("checked",true);  

});  

注意:#btn是动态后添加进去的,#datatable必须是页面中本有的,是静态的,且#btn在#datatable范围内

2.例子2:

 $("table").on("click","input[name='result']",function(){

      var len = $(this).parent().siblings().children("input").attr("checked",false);

      $(this).attr("checked",true);

        

 });

$('table') 是页面已经存在的。

$('input[name='result']')是动态加载的元素。

绑定点击事件。