gpt4 book ai didi

jquery - 单击元素外部任意位置时隐藏元素

转载 作者:行者123 更新时间:2023-12-01 02:31:08 24 4
gpt4 key购买 nike

当用户单击页面中的任意位置而不是 div 上时,我希望隐藏 div。

<head>
<script type="text/javascript" src="jquery-1.8.3.js"></script>
<script type="text/javascript">
$(function () {
$(document).not('.me').click(function () {
$('.me').hide()
})
})
</script>
</head>
<body>
<div class="me" style="width:200px; height:200px; background:#F00">
test
</div>
</body>

最佳答案

$(document).click(function (e)
{
var container = $(".me");

if (container.has(e.target).length === 0)
{
container.hide();
}
});

关于jquery - 单击元素外部任意位置时隐藏元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16832915/

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