关于事件不起作用的jquery 1.9.1

时间:2013-05-14 01:10:05

标签: javascript jquery

随着Jquery v1.5.2以下功能的运行,我已将jquery升级到1.9.1 live已被替换为 on 功能。如果我改变直播。它不起作用。

我改变了直播并将迁移插件包含在其中。如何在 on 功能

中使用它
$( ".pop-up" ).live(
                        "click",
                            function( event ){
                                // get the id of the item clicked on
                                var id = $(this).attr('id');
                                 alert(id)
                            // block the href actually working
                            return( false );

                            });

1 个答案:

答案 0 :(得分:1)

试试这个

如果您可以使用DOM中已存在的选择器,而不是文档,如果以后将此元素动态添加到DOM中。

$(function(){
      $(document).on("click", ".pop-up",
        function( event ){
                            // get the id of the item clicked on
                            var id = $(this).attr('id');
                             alert(id)
                        // block the href actually working
                        return( false );
       });

});