jQuery on()方法使用技巧详解
jQueryon()方法是官方推荐的绑定事件的一个方法。
$(selector).on(event,childSelector,data,function,map)
由此扩展开来的几个以前常见的方法有.
bind()
$("p").bind("click",function(){ alert("Theparagraphwasclicked."); });
$("p").on("click",function(){ alert("Theparagraphwasclicked."); });
delegate()
$("#div1").on("click","p",function(){ $(this).css("background-color","pink"); });
$("#div2").delegate("p","click",function(){ $(this).css("background-color","pink"); });
live()
$("#div1").on("click",function(){ $(this).css("background-color","pink"); });
$("#div2").live("click",function(){ $(this).css("background-color","pink"); });