如何使用asp mvc制作锚点导航列表
我的页面上有很多记录。要求它们显示在一个地方。但为了更容易导航,我们将添加一个索引 div,将锚点指向某个类别。
例如,我们有类别 ABCDE,并且在一个类别下有该类别的产品,
如何在 ASP.NET MVC(锚点)链接中制作指向类别 div 的链接?
On my page there are a lot of records. It is a requirement for them to be displayed on a single place. But to make it easier to navigate we will add an index div that points anchors to some category.
For example we have category A B C D E and under a category there are products of that category
How do you make in ASP.NET MVC (anchor) link that point to the category div?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 命名锚点:
以及同一页面上的其他位置
: jQuery UI Accordion 也值得一试。
You could use named anchors:
and somewhere else on the same page:
The jQuery UI accordion is also worth checking out.