如何使用asp mvc制作锚点导航列表

发布于 2024-11-07 15:08:40 字数 149 浏览 0 评论 0原文

我的页面上有很多记录。要求它们显示在一个地方。但为了更容易导航,我们将添加一个索引 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 技术交流群。

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

发布评论

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

评论(1

萌吟 2024-11-14 15:08:40

您可以使用 命名锚点

<a href="#categoryA">Jump to category A products</a>

以及同一页面上的其他位置

<div>
    <a name="categoryA">Category A products</a>
    ... some products here
</div>

jQuery UI Accordion 也值得一试。

You could use named anchors:

<a href="#categoryA">Jump to category A products</a>

and somewhere else on the same page:

<div>
    <a name="categoryA">Category A products</a>
    ... some products here
</div>

The jQuery UI accordion is also worth checking out.

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