jsTree、hover_node、事件
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
阅读完文档后,我想到编写一个插件。
这可能是一个开始(供将来参考)。
但传递的参数是节点而不是事件。
最后我想到了绑定到
mouseenter.jstree事件
。这给了我原始事件。
After going through the documentation I thought about writting a plugin.
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.