HTML
CSS
JavaScript
Vue
React
Python
PHP
Java
.Net
Java9手册
PHP手册
CSS3手册
jQuery手册
源代码
在线运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>代码学院(codexy.cn)</title> <script src="https://cdn.staticfile.org/jquery/1.6.2/jquery.min.js"></script> </head> <body> <div class='menu'> 点击这里 <div class='submenu'>自动移除</div> </div> <script> (function() { var myjQuery = jQuery.sub(); myjQuery.fn.remove = function() { // 拓展新功能:触发remove事件 this.trigger("remove"); // 确保继续回调原jquery的remove方法 return jQuery.fn.remove.apply(this, arguments); }; myjQuery(function($) { $(".menu").click(function() { myjQuery(this).find(".submenu").remove(); }); //新的remove事件从jQuery副本中被触发 $(document).bind("remove",function(e) { $(e.target).parent().hide(); }); }); })(); </script> </body> </html>
动行结果