简单教程
提交运行
代码编辑器:
<!DOCTYPE html> <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> <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> <footer>简单教程,简单编程<br/>Copyright © 简单教程 www.twle.cn</footer>
运行结果: