jsTree,hover_node,event

时间:2012-02-06 15:35:26

标签: javascript jstree

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

任何不涉及破解核心的建议?

感谢, BBZ

1 个答案:

答案 0 :(得分:1)

在浏览完文档后,我考虑过编写插件。

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

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

最后我想到绑定到mouseenter.jstree event。 这给了我原始的活动。