首先我们使用jquery 1.4然后我们迁移到jquery 1.7之后,委托方法在1.7 jquery库中没有工作,试图使用.on方法,但它不起作用。
$( "body" ).delegate( "p", "click", function() { $( this ).after( "
////Another paragraph!
" ); });
答案 0 :(得分:1)
.delegate()
在jquery版本1.7 +。.on()
中已被弃用:
$( "body" ).on("click","p",function() {
//code here
});
答案 1 :(得分:0)
不推荐使用On()
.delegate()
$(document).on("click","p",function() {
//your code here
});
答案 2 :(得分:0)
$( "body" ).on( "click", "p", function() { $( this ).after( " Another paragraph!
" ); });