0

随着 Jquery v1.5.2 以下功能的工作,我已将 jquery 升级到 1.9.1 live 已替换为on功能。如果我将 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 );

                            });
4

1 回答 1

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 );
       });

});
于 2013-05-14T01:12:38.740 回答