编辑下面的代码:【加编码】
<html> <head> <script src="https://libs.baidu.com/jquery/1.7/jquery.min.js"> </script> <script> $(document).ready(function(){ $("p").live("click",function(){ $(this).slideToggle(); }); $("button").click(function(){ $("p").die(); }); }); </script> </head> <body> <p>This is a paragraph.</p> <p>This is another paragraph.</p> <p>Click any p element to make it disappear.</p> <button>Remove event handlers, added with the live() method, for p elements</button><br><br> <div><b>Note:</b> The die() method was deprecated in jQuery version 1.7, and removed in version 1.9. We have used an earlier version of jQuery (1.7 in the script tag), for this example to work.</div> </body> </html>
结果: 【此窗口】 帮助?
Try it Yourself - © 自强学堂