gpt4 book ai didi

javascript - 在 Mozilla 上如何选择表单之外的元素

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

当我单击表单的外部区域时,表单将消失。我在 Chrome 上实现了此功能。

$(window).on("click", function(e) {
if( !$(event.target).closest('#login_form').length && !$(event.target).closest('#popup_btn').length ) {
$("#login_form").fadeOut("slow");
$("#popup_btn").fadeIn("slow");
$(".nk-header-table").attr("id", "");
}
});

但它在 Mozilla 上不起作用。我认为是因为 closest() 方法。我该如何处理?

最佳答案

尝试使用 e.target 而不是 event.target

关于javascript - 在 Mozilla 上如何选择表单之外的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43919481/

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