使用名为 jQuery 文件树的 jQuery 插件

发布于 2024-10-25 01:46:23 字数 529 浏览 1 评论 0原文

不知道你是否知道这个插件,但基本上它显示一棵树。 我在使用它时遇到问题,希望您帮助我使用此插件。

此链接有该插件的演示。

基本上我有项目组和项目,我在其中显示树,每个项目都在各自的组中。一旦用户单击该组,该组就会展开,显示该组的所有项目。

这里是一个使用示例。

我的环境是asp.net(C#)

我想用这个插件来显示组的项目以及树下的项目:

按照链接 代码,尽我所能。 我想查看树中的 ul 和 li 标签。

Do not know if you know this plugin but basically it displays a tree.
I'm having trouble using it, and would like your help to use this plugin.

This link has a presentation of the plugin.

Basically I have the project groups and projects where I display the tree, each project within their respective group. And once the user clicks on the group, the group is expanded showing all projects that group.

Here is an example of use.

My environment is asp.net (C #)

I would like to use this plugin to display the group's projects and projects under the tree:

Follow the link for a code, as far as I could do.
I would like to view the ul and li tags in the tree.

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

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

发布评论

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

评论(1

另类 2024-11-01 01:46:23

FileTree 插件使用服务器上的文件夹结构在前端构建树。 root 参数提供给 script 参数中指定的脚本。该脚本使用 root 参数在该文件夹下构建“文件”的子树。

这意味着,您必须创建一个脚本(例如 HttpHandler)并在 script 参数中提供该脚本的 URL。在脚本中,您使用 root 参数来检索并返回子元素。

希望有帮助。

The FileTree plugin uses a folder structure on the server to build a tree on the front-end. The root parameter is supplied to the script specified in the script parameter. The script uses the root parameter to build a child tree of "files" under that folder.

That means, you have to create a script (e.g. HttpHandler) and supply the URL of that script in the script parameter. In your script, you use the root parameter to retrieve and return child elements.

Hope that helps.

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