是否可以获取绑定到 jQuery 元素的事件列表?

发布于 2024-08-11 06:08:27 字数 298 浏览 4 评论 0原文

正如问题所说,我需要绑定到特定元素的事件列表。

我的意思是像单击、鼠标悬停等事件在 dom 加载时绑定到该元素。

(愚蠢)示例:

$("#element").click(function()
{
    //stuff
});
$("#element").mouseover(function()
{
    //stuff
});
$("#element").focus(function()
{
    //stuff
});

结果:

点击, 鼠标悬停, 重点

As the question said, i need the list of events bound to a specific element.

I mean events like click, mouseover etc bound to that element at the loading of the dom.

(Stupid) example:

$("#element").click(function()
{
    //stuff
});
$("#element").mouseover(function()
{
    //stuff
});
$("#element").focus(function()
{
    //stuff
});

Result:

click,
mouseover,
focus

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

撩心不撩汉 2024-08-18 06:08:27

每个事件都被添加到一个数组中。

可以使用 jQuery 数据方法访问该数组:

$("#element").data('events')

要将一个对象的所有事件记录到 fireBug,只需键入:

console.log ( $("#element").data('events') )

您将获得所有绑定事件的列表。


更新:

对于 jQuery 1.8 及更高版本,您必须查看内部 jQuery 数据对象:

$("#element").each(function(){console.log($._data(this).events);});
// or
console.log($._data($("#element")[0]).events);

Every event is added to an array.

This array can be accessed using the jQuery data method:

$("#element").data('events')

To log all events of one object to fireBug just type:

console.log ( $("#element").data('events') )

And you will get a list of all bound events.


Update:

For jQuery 1.8 and higher you have to look into the internal jQuery data object:

$("#element").each(function(){console.log($._data(this).events);});
// or
console.log($._data($("#element")[0]).events);
一绘本一梦想 2024-08-18 06:08:27

您可以通过 element.data('events'); 访问它。例子:

var events = element.data('events');
for (var type in events) {
    // `type` is "click", "mouseover", "change", etc.
    for (var handler in events[type]) {
        // `handler` is the associated function.
    }
}

You can access it by element.data('events');. Example:

var events = element.data('events');
for (var type in events) {
    // `type` is "click", "mouseover", "change", etc.
    for (var handler in events[type]) {
        // `handler` is the associated function.
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文