查询结果表中的多级无序列表
我做了一个查询,我可以使用该查询的所有行用以下 thead 填充一个表。
section_id | section | category_id | category | subcategory_id | subcategory
现在我试图从这个填充的表创建一个多级无序列表。有可能做到吗?结果应该是这样的:
<ul>
<li>Section Name
<ul>
<li>Category name for above section
<ul>
<li>Subcategory name for above category and section</li>
</ul>
</li>
</ul>
</li>
</ul>
感谢您的帮助。
I made a query which i can populate a table with following theads using all rows of that query.
section_id | section | category_id | category | subcategory_id | subcategory
Now I am trying to create a multilevel unordered list from this populated table. Is it possible to do it? Result should like this:
<ul>
<li>Section Name
<ul>
<li>Category name for above section
<ul>
<li>Subcategory name for above category and section</li>
</ul>
</li>
</ul>
</li>
</ul>
Thank you for any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许是这样的(未经测试):
Something like this, perhaps (untested):