在“空间”上切换节点热键,但不在“鼠标单击”上
要使用“mouseclick”和“space”切换节点,我刚刚写道:
.bind("select_node.jstree", function (event, data) {
$("#tree").jstree("toggle_node", data.rslt.obj);
})
但是如果我只需要切换“space”热键而不是“mouseclick”怎么办?
To toggle node with both "mouseclick" and "space" I just wrote :
.bind("select_node.jstree", function (event, data) {
$("#tree").jstree("toggle_node", data.rslt.obj);
})
but what if I just need to toggle only on "space" hotkey and not on "mouseclick".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用hotkyes插件 http://jsfiddle.net/radek/G789k/31/
我删除了你的绑定
You can use hotkyes plugin http://jsfiddle.net/radek/G789k/31/
added hotkeys definition
I removed your bind