实例首页
自学教程
IT工具箱
源代码
下载代码
上下布局
点击运行 >
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js"> </script> <script> $(document).ready(function(){ $("#div1").on("click",function(){ $(this).css("background-color","pink"); }); $("#div2").bind("click",function(){ $(this).css("background-color","pink"); }); }); </script> </head> <body> <h4 style="color:green;">该实例演示了如何使用 on() 来达到与 bind() 相同的效果。</h4> <div id="div1" style="border:1px solid black;">这些一些文本。 <p>点我使用 <b>on() 方法设置背景颜色</b>。</p> </div><br> <div id="div2" style="border:1px solid black;">这些一些文本。 <p>点我使用 <b>bind() 方法设置背景颜色</b>。</p> </div> </body> </html>
运行结果: