如何在外部的任何点击上隐藏 div
Posted
技术标签:
【中文标题】如何在外部的任何点击上隐藏 div【英文标题】:How to hide the div on any click outside 【发布时间】:2012-11-05 16:54:52 【问题描述】:我开始使用 jquery 并试图创建一个简单的 div 隐藏和显示效果。效果似乎很好,但我需要当用户点击文档的任何其他部分(即除了隐藏/显示框)时,该框应该隐藏起来。这是jsfiddle: http://jsfiddle.net/39DzJ/。我没有正确设计它。我希望效果首先起作用。 谁能帮我吗 ? 这是 html 代码:
<style>
#mail_floater
background:#fce8bd;
height:88px;
width:342px;
border:1px solid #b7ad02;
border-radius:5px;
position:absolute;
left:200px;
top:50px;
border-top:none;
z-index:100;
padding:0;
#subscribe_user
width:248px;
height:16px;
border:1px solid #b7ad02;
#cust_care_floater
background:#fce8bd;
height:12px;
width:108px;
border:1px solid #b7ad02;
border-radius:2px;
border-bottom-left-radius:2px;
position:absolute;
left:450px;
top:30px;
border-top:none;
z-index:100;
clear:both;
font-family:Tahoma, Geneva, sans-serif;
font-size:10px;
font-weight:bold;
color:#036f05;
box-shadow:1px 1px 3px #ccc inset;
#closer
float:right;
margin-right:5px;
margin-top:2px;
width:19px;
height:19px;
background:url(../images/close.png) no-repeat;
</style>
</head>
<body>
<a href="#" id="subscribe">Subscribe</a>
<a href="#" id="customer_care">Customer care</a>
<div id="mail_floater">
<h5>Email</h5>
<div id="closer"></div>
<div id="email_input"><form><label>Enter E-mail : </label><span><input type="text" id="subscribe_user" /></span>
<input type="submit" id="subscribe_me" value="Done" /></form></div>
</div>
<div id="cust_care_floater">
<span style="padding:0px 10px 0 10px;">033-993-99920</span>
</div>
</body>
javascript代码:
$(document).ready (
function()
var disp_box=$('#mail_floater');
var sub_link=$('#subscribe');
var disp_box_2=$('#cust_care_floater');
var sub_link_2=$('#customer_care');
disp_box.hide();
disp_box_2.hide();
sub_link.click
(
function()
disp_box.show();
);
disp_box.find('#closer').click
(
function()
disp_box.hide();
);
sub_link_2.click
(
function()
disp_box_2.show();
);
);
【问题讨论】:
【参考方案1】:$(document).on('click', ':not(.hideDiv)', function(e)
if($(e.target).is(':not(.hideDiv)')) //extra check for good measure
$('.hideDiv').hide();
);
演示:http://jsfiddle.net/maniator/S9fDy/
【讨论】:
@neal 感谢您的帮助。但这在我的代码中不起作用。它永久隐藏了盒子。放置此代码后单击锚点不会显示该框 是的,现在效果正在工作,但即使我在 div 或 div 的任何元素中单击,div 也会隐藏。有什么解决办法吗? @user1720527 摆弄它。我相信你会明白的:-D以上是关于如何在外部的任何点击上隐藏 div的主要内容,如果未能解决你的问题,请参考以下文章
js实现点击显示一个div,点击其他任何地方div消失,如何实现