jQuery除指定区域外点击任何地方隐藏DIV功能
时间:2020-12-22 18:19:43|栏目:jquery|点击: 次
具体代码如下所示:
$('body').click(function(e) { var target = $(e.target); // 如果#overlay或者#btn下面还有子元素,可使用 // !target.is('#btn *') && !target.is('#overlay *') if(!target.is('#btn') && !target.is('#overlay')) { if ( $('#overlay').is(':visible') ) { $('#overlay').hide(); } } });
或者
$('body').click(function(e) { if(e.target.id != 'btn' && e.target.id != 'overlay') if ( $('#overlay').is(':visible') ) { $('#overlay').hide(); } })
PS:下面在接着看一段代码jquery 点击除本身外其他地方隐藏
$("#test").click(function(e) { e?e.stopPropagation():event.cancelBubble = true; }); $(document).click(function() { $("#test").fadeOut(); <pre name="code" class="html">e?e.stopPropagation():event.cancelBubble = true; 为阻止冒泡事件</pre> }); <pre></pre> <br> <link rel="stylesheet" href="http://static.blog.csdn.net/public/res-min/markdown_views.css?v=2.0">
总结
上一篇:JQuery实现ul中添加LI和删除指定的Li元素功能完整示例
栏 目:jquery
下一篇:jQuery Form插件使用详解_动力节点Java学院整理
本文标题:jQuery除指定区域外点击任何地方隐藏DIV功能
本文地址:http://www.codeinn.net/misctech/35475.html