jsTree触发select_node函数
我有 jsTree 和一个按钮。 jsTree 有 select_node 函数
.bind("select_node.jstree", function (event, data) {
// some code
})
是否可以在按钮单击时触发 select_node 事件?
I have got jsTree and a button. jsTree has select_node function
.bind("select_node.jstree", function (event, data) {
// some code
})
is it possible to trigger select_node event on button click?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 jQuery 中使用
绑定
的任何内容的方法都是通过trigger
(或triggerHandler
)完成的。请参阅:http://api.jquery.com/trigger/
The way to use anything you
bind
ed in jQuery is done viatrigger
(ortriggerHandler
).See: http://api.jquery.com/trigger/
您可以编写一个
,然后您可以像这样在事件绑定中调用它
,然后您不必尝试自己触发“select_node”,您可以直接调用
注意:您必须已经将树的引用保存在全局范围内的变量中才能访问稍后再说
you could write a
and then you can call it in your event bind like this
and then instead of trying to trigger 'select_node' yourself you can just call
note: you must have already saved the reference of tree in a variable in global scope to access it later
您可以使用触发器触发 select_node.jstree,即
数据是您需要选择的完整节点
You can trigger the select_node.jstree using trigger i.e
where data is complete node that you need to select