gpt4 book ai didi

javascript - 如何根据另一个div触发一个div的onClick函数

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

我想在 HTML 页面上单击一种类型的按钮时调用函数。

我在页面上有大约 10 个这样的按钮,并编写了以下代码以在单击按钮时调用函数,

$('.divname').each(function (index) {
$(this).on("click", function (e) {
//Call Another Function
});
});

这按预期工作正常。

但是问题是,有时根据某些条件创建了一个动态生成的 div(弹出消息),并且我不希望上述代码在弹出消息出现时起作用。

您能否告知如何实现这一目标?

感谢和问候,安尼凯特

最佳答案

嗨,像设置一个 bool 值并检查它是真还是假之类的东西......比如:

var enable = true;

$('.divname').each(function (index) {
$(this).on("click", function (e) {
//Call Another Function
if(!enable) return;
});
});

//set it to false on popup show (or something else event)
$(popup).show(function(){
enable = false;
})

关于javascript - 如何根据另一个div触发一个div的onClick函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41702165/

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