查找节点的事件处理程序

发布于 2025-01-07 17:56:36 字数 123 浏览 0 评论 0原文

我想暂时暂停一个节点的点击事件。

我想获取节点的单击事件处理程序并将其分离,然后在再次需要时重新附加它。

我正在使用 YUI 3。

有人可以告诉我如何查询节点的单击事件处理程序并分离它们吗?

I want suspend the click event for a node temporarily .

I want to get the click event handler for a node and detach it and then reattach it when I want it again.

I am using YUI 3.

Can some one tell me how could I query the click event handlers for a node and detach them?

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

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

发布评论

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

评论(2

夜访吸血鬼 2025-01-14 17:56:37

on() 返回一个订阅对象,可用于取消绑定该订阅。

var subscription = myNode.on("click", handleClick);

//unbind the subscription
subscription.detach();

则可以使用 Node 的 detach() 方法

myNode.detach("click", handleClick); //detaches only handleClick

或者,如果您没有获取订阅对象或者想要分离所有点击处理程序,

node.detach('点击');

on() returns a subscription object that can be used to unbind that subscription

var subscription = myNode.on("click", handleClick);

//unbind the subscription
subscription.detach();

Or you can use the Node's detach() method if you didnt get the subscription object

myNode.detach("click", handleClick); //detaches only handleClick

or if you want to dettach all click handlers :

node.detach('click');

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文