Jquery 树视图和 Ajax

发布于 2024-12-02 03:11:41 字数 372 浏览 0 评论 0原文

我在我的网站上使用 Jquery 树视图作为树结构。树结构很大。所以最初显示 10 个节点,每次单击 ('+') 时,都会使用 ajax 从数据库中获取更多节点,然后包裹在锚标签中并显示在 ul > 下li..我的问题是,当单击锚标记时,它将重定向到仅包含初始 10 个节点的新页面(显然是的)..无论如何要保持新页面上的树结构吗?

有技术高手帮忙吗??

这就是我使用的 http://bassistance.de/jquery-plugins/jquery-plugin-treeview/

Im using Jquery tree view for a tree structure on my website..The tree structure is big..so initially 10 nodes are displayed and on each click of the ('+') more nodes are fetched from the db using ajax it is then wrapped in an anchor tag and displayed under the ul > li..My question is when clicking the anchor tag it will redirect to a new page with the initial 10 nodes only (Obviously yes)..anyway to keep this tree structure as is on the new page ?

Any help techie guys ??

This is what im using
http://bassistance.de/jquery-plugins/jquery-plugin-treeview/

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

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

发布评论

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

评论(1

温柔戏命师 2024-12-09 03:11:41

如果您愿意阻止您的标签更改页面的位置,以便您的树视图正常工作,那么您至少有两种方法可以做到这一点:

  1. 如果您不想链接到其他地方,请不要使用 a 标签; )。
  2. 在 href 属性中写入:void(0);

假超链接

肯定还有很多其他更简洁的方法可以做到这一点,但至少它工作得很好。不过,我很高兴学习最好的方法;)

If you are willing to prevent your tag from changing the location of your page so that your treeview works fine, then you have at least 2 ways of doing this:

  1. Do not use the a tag if you do not want to link to somewhere else ;).
  2. in the href attribute, write: void(0);

Fake hyperlink

There must be much other cleaner ways of doing this, but at least it works fine. I'd be glad to learn the best way though ;)

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