gpt4 book ai didi

jquery - 单击正文 html 时隐藏元素

转载 作者:行者123 更新时间:2023-12-01 08:45:21 25 4
gpt4 key购买 nike

我有这段代码,一切正常,我想让所有元素 # content1、# content2 .. 在单击正文时隐藏。我尝试为 body 设置 z-index 小于 div 的 z-index,但没有帮助

    $(function() {
$('#div1').click(function() {
$('#content1, #content2, #content3').hide();
$('#content1').show();
/* other code ..*/
});

$('#div2').click(function() {
$('#content1, #content2, #content3').hide();
$('#content2').show();
/* other code ..*/
});
});
 html,body{width:100%;height:100%;}

#div1, #div2, #div3{
overflow:hidden;
float:left;
width:40px;
height:40px;
background:red;
margin:0 10px 0 0;
}
#content1, #content2, #content3{
overflow:hidden;
position:absolute;
top:50px;
background-color:#000;
color:#fff;
padding:2px 4px;
}
<!doctype html>
<html>
<body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="div1">
<div id="content1" style="display: none;">
text1
</div>
</div>
<div id="div2">
<div id="content2" style="display: none;">
text2
</div>
</div>
<div id="div3">
<div id="content3" style="display: none;">
text3
</div>
</div>
</body>
</html>

最佳答案

试试这个:

$(function() {
var div1 = $("#div1");
var div2 = $("#div2");
var div3 = $("#div3");
$("body").on("click", function (e) {
if (div1.has(e.target).length || e.target == div1[0])
return;
else if (div2.has(e.target).length || e.target == div2[0])
return;
else if (div3.has(e.target).length || e.target == div3[0])
return;
$('#content1, #content2, #content3').hide();
});
});
html,body{width:100%;height:100%;}
<div id="div1">
<div id="content1">
text1
</div>
</div>
<div id="div2">
<div id="content2">
text2
</div>
</div>
<div id="div3">
<div id="content3">
text3
</div>
</div>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>

关于jquery - 单击正文 html 时隐藏元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43278116/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com