gpt4 book ai didi

jquery - 如何在 jQuery 中对 future 元素应用单击?

转载 作者:行者123 更新时间:2023-12-01 07:49:31 25 4
gpt4 key购买 nike

如何对 future 的元素应用 jquery 单击?请引用下面我的代码

$(document.body).on('click', '.testClass', testfunction);

我只想允许单击此代码。我该怎么做?

提前致谢......

最佳答案

使用one()

$(document.body).one('click', '.testClass', testfunction);

这将为所有.testClass元素触发一次点击事件。

如果您想每个.testClass触发一次点击事件,请使用data-*手动跟踪元素是否被点击 属性

$(document.body).on('click', '.testClass', testfunction);

function testfunction(){
if($(this).data('clicked')) return;
$(this).data('clicked', 1);
/* rest of logic there*/
}

关于jquery - 如何在 jQuery 中对 future 元素应用单击?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31679627/

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