菜鸟学堂
在线运行
源代码
<!DOCTYPE html> <html> <head> <script src="http://edu.jb51.net/libs/jquery/1.10.2/jquery.min.js"> </script> <script> $(document).ready(function(){ $("#div1").on("click","p",function(){ $(this).css("background-color","pink"); }); $("#div2").delegate("p","click",function(){ $(this).css("background-color","pink"); }); }); </script> </head> <body> <h4 style="color:green;">This example demonstrates how to achieve the same effect using on() and delegate().</h4> <div id="div1"> <p>Click to set background color using the <b>on() method</b>.</p> </div> <div id="div2"> <p>Click to set background color using the <b>delegate() method</b>.</p> </div> </body> </html>
运行结果
在线运行
菜鸟学堂 edu.jb51.net