gpt4 book ai didi

javascript - 一种检查类的任何元素是否被单击的方法

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

有没有办法检查类的任何元素是否已使用 jQuery 单击?我想检测是否单击了具有特定类的元素。

最佳答案

I want to detect if an element with a certain class has been clicked.

那么您可以随时订阅 .click()单击 DOM 元素时将调用的事件处理程序:

$('.someClass').click(function() {
// here you could use "this" to get the DOM element that was clicked.
});

如果您想使用 .data() 跟踪它,则可以将一些元数据信息与此 DOM 元素关联起来。功能:

$('.someClass').click(function() {
var isClicked = $(this).data('clicked');
if (!isClicked) {
// it's the first time we are clicking on this element
$(this).data('clicked', true);
} else {
// the user has already clicked on this element
}
});

关于javascript - 一种检查类的任何元素是否被单击的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14922804/

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