gpt4 book ai didi

javascript - 隐藏 body 点击,除了项目 id = 某事

转载 作者:行者123 更新时间:2023-11-28 13:51:24 28 4
gpt4 key购买 nike

除非用户单击 ID = 'menubutton' 的元素,否则如何隐藏菜单?

$('body').click(function(event) {
$('#menu').hide();
});

最佳答案

使用 not() 选择器

$('body :not(#menubutton)').click(function(event) {
$('#menu').hide();
});

http://api.jquery.com/not-selector/

关于javascript - 隐藏 body 点击,除了项目 id = 某事,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10624427/

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