如何在一个应用程序中对 jsTree 使用不同的“search_method”?

发布于 2024-12-25 21:06:45 字数 272 浏览 2 评论 0原文

我需要使用 jsTree 的不同“search_method”。至少有 3 个函数:

  • “jstree_title_contains”
  • “contains”
  • “jstree_contains”

例如,如果我单击第一个按钮,search_method 应更改为“jstree_title_contains”。 如果我单击第二个按钮 search_method 应更改为“jstree_contains”。

我该怎么做?

I need to use different "search_method" of jsTree. There are at least 3 functions:

  • "jstree_title_contains"
  • "contains"
  • "jstree_contains"

FOr example if I click on the first button search_method should change to "jstree_title_contains".
If I click on the second button search_method should change to "jstree_contains".

How can I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

旧情勿念 2025-01-01 21:06:45

像这样的东西应该有效:

jstree = $.jstree._reference(root_element); // root_element is the selector for the element jstree is attached to (element.jstree({...}))
jstree._get_settings().search.search_method = 'jstree_title_contains'; // or 'contains' or 'jstree_contains'

Something like this should work:

jstree = $.jstree._reference(root_element); // root_element is the selector for the element jstree is attached to (element.jstree({...}))
jstree._get_settings().search.search_method = 'jstree_title_contains'; // or 'contains' or 'jstree_contains'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文