jsTree触发select_node函数

发布于 2024-12-28 02:28:40 字数 180 浏览 1 评论 0原文

我有 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 技术交流群。

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

发布评论

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

评论(3

纵情客 2025-01-04 02:28:41

在 jQuery 中使用绑定的任何内容的方法都是通过trigger(或triggerHandler)完成的。

.trigger('select_node.jstree', data)

请参阅:http://api.jquery.com/trigger/

The way to use anything you binded in jQuery is done via trigger (or triggerHandler).

.trigger('select_node.jstree', data)

See: http://api.jquery.com/trigger/

俏︾媚 2025-01-04 02:28:41

您可以编写一个

function onSelectNode(selectedNode) {/* do stuff */}

,然后您可以像这样在事件绑定中调用它

.bind("select_node.jstree", function (event, data) {
    onSelectNode(data.node);
})

,然后您不必尝试自己触发“select_node”,您可以直接调用

onSelect(treeInstance.get_selected(true)[0])

注意:您必须已经将树的引用保存在全局范围内的变量中才能访问稍后再说

treeInstance = $('#div').jstree(true);

you could write a

function onSelectNode(selectedNode) {/* do stuff */}

and then you can call it in your event bind like this

.bind("select_node.jstree", function (event, data) {
    onSelectNode(data.node);
})

and then instead of trying to trigger 'select_node' yourself you can just call

onSelect(treeInstance.get_selected(true)[0])

note: you must have already saved the reference of tree in a variable in global scope to access it later

treeInstance = $('#div').jstree(true);
顾铮苏瑾 2025-01-04 02:28:41

您可以使用触发器触发 select_node.jstree,即

.trigger('select_node.jstree', data)

数据是您需要选择的完整节点

You can trigger the select_node.jstree using trigger i.e

.trigger('select_node.jstree', data)

where data is complete node that you need to select

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