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