gpt4 book ai didi

javascript - 如何检查元素是否有点击处理程序?

转载 作者:行者123 更新时间:2023-12-03 21:43:59 24 4
gpt4 key购买 nike

Possible Duplicate:
test if event handler is bound to an element in jQuery

尝试执行以下操作(链接是“a”标签的 jQuery 对象):

 link.data("events") //undefined even if link has event handlers
jQuery.data(link, 'events') //undefined always also
jQuery._data(link, 'events') //undefined always also

使用jquery-1.8.3

那么,如何检查元素是否有点击处理程序?

最佳答案

您可以使用jQuery._data检查事件。第一个参数应该是对 HTML 元素的引用,而不是 jQuery 对象。

var ev = $._data(element, 'events');
if(ev && ev.click) alert('click bound');

示例如下。

$(function(){
$('#test').click(function(){
// NOTE: this below is refering to the HTML element, NOT the jQuery element
var ev = $._data(this, 'events');
if(ev && ev.click) alert('click bound to this button');
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<button id="test">Click me to check for click handlers</button>

另请注意,此检查事件的方法仅在通过 jQuery 绑定(bind)事件时才有效。如果事件通过 element.attachEventListener 绑定(bind), element.onclick , <a onclick="doStuff()">或任何其他非 jQuery 方式,这将不起作用。如果您适合这艘船,请检查this answer .

关于javascript - 如何检查元素是否有点击处理程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14072042/

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