jQuery除指定区域外点击任何地方隐藏DIV功能
具体代码如下所示:
$('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">
总结
相关推荐
89510194 2019-12-31
开心就好 2019-08-27
xiaohuli 2019-06-29
libowen0 2018-06-04
hhhkhhh 2017-07-20
杉林的HelloWord 2015-11-24
83510998 2015-08-18
dangzhangjing 2019-06-27
语帆 2015-04-15
小肖 2014-07-16
teresalxm 2014-04-30
CoderChang 2014-04-30
hjfbluesky 2014-03-05
83443560 2013-09-06
统一开发环境UDE 2013-02-05
JeWangZhe 2012-08-30