jsTree、hover_node、事件

发布于 2025-01-03 12:19:27 字数 141 浏览 0 评论 0原文

jsTree hide_node 回调不会返回原始 ('mouseenter') 事件。 我想从事件中获取鼠标位置(Client.Y)。

有什么建议,不涉及破解核心吗?

谢谢, BBZ

The jsTree hover_node callback doesn't return the original ('mouseenter') event.
I'd like to get the mouse position (Client.Y) from the event.

Any suggestions, which don't involve hacking the core?

thanks,
BBZ

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

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

发布评论

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

评论(1

迟月 2025-01-10 12:19:27

阅读完文档后,我想到编写一个插件。

$.jstree.plugin('custom-plugin', {
  _fn: {
    hover_node: function () {
      console.log(arguments);
      this.__call_old();
    }
  }
});

这可能是一个开始(供将来参考)。
但传递的参数是节点而不是事件。

最后我想到了绑定到mouseenter.jstree事件
这给了我原始事件。

After going through the documentation I thought about writting a plugin.

$.jstree.plugin('custom-plugin', {
  _fn: {
    hover_node: function () {
      console.log(arguments);
      this.__call_old();
    }
  }
});

This could be a start (for future reference).
But the argument passed was a node not the event.

Finally I thought of binding to the mouseenter.jstree event.
Which gives me the original event.

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