在我的页面上有很多记录。要求它们显示在一个地方。但是为了更容易导航,我们将添加一个索引div,将锚点指向某个类别。
例如,我们有类别A B C D E,在类别下有该类别的产品
如何在ASP.NET MVC(锚点)链接中指向类别div?
答案 0 :(得分:2)
您可以使用named anchors:
<a href="#categoryA">Jump to category A products</a>
和同一页面上的其他地方:
<div>
<a name="categoryA">Category A products</a>
... some products here
</div>
jQuery UI accordion也值得一试。