jquery html动态添加的元素绑定事件详解

2021-05-19 19:29

阅读:588

标签:his   logs   fun   div   class   也会   ajax加载   jquery   app   

在实际开发中会遇到要给动态生成的html元素绑定触发事件的情况:

    • apple
    • pear
       但对于ajax添加进来的html代码段,如$("#xx").html(html内容),如果想里面的元素也会触发我们定义的事件,必须委托 需要用到事件委托,比如: 普通绑定事件:$(‘.btn1‘).click(function(){}绑定 on绑定事件:$(document).on(‘click‘,‘.btn2‘,function(){})绑定 .btn是ajax加载的html内容样式选择器

     

    jquery html动态添加的元素绑定事件详解

    标签:his   logs   fun   div   class   也会   ajax加载   jquery   app   

    原文地址:http://www.cnblogs.com/wuheng1991/p/7717901.html


    评论


    亲,登录后才可以留言!