使用名为 jQuery 文件树的 jQuery 插件
不知道你是否知道这个插件,但基本上它显示一棵树。 我在使用它时遇到问题,希望您帮助我使用此插件。
此链接有该插件的演示。
基本上我有项目组和项目,我在其中显示树,每个项目都在各自的组中。一旦用户单击该组,该组就会展开,显示该组的所有项目。
这里是一个使用示例。
我的环境是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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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 thescript
parameter. The script uses theroot
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 theroot
parameter to retrieve and return child elements.Hope that helps.