MVC 母版页上的代码

发布于 2024-08-20 17:37:52 字数 75 浏览 5 评论 0原文

我想在 mvc 母版页上编写一段代码,请告诉我该怎么做,我的要求是我想将单击的选项卡显示为突出显示。

请帮我 谢谢 丽兹

I want to write a code on the mvc master page please tell how shall I do that,My requirement is that I want to show the tab clicked as highlighted.

Please help me
Thanks
Ritz

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

闻呓 2024-08-27 17:37:52

在链接上使用 css :visited 伪类

use css :visited pseudo-class on link

jJeQQOZ5 2024-08-27 17:37:52

按照 Jack 的说明使用 css 并检查当前路线上的信息以查看您显示的视图,例如

Html.ViewContext.Controller.ControllerContext.RouteData.GetRequiredString("控制器")

获取当前控制器或用路由中所需的任何数据替换控制器。然后只需添加一个条件即可在选项卡上添加或不添加选定的类。

Use css as stated by Jack and check the information on your current route to see what view your displaying, something like

Html.ViewContext.Controller.ControllerContext.RouteData.GetRequiredString("controller")

to get the current controller or replace controller with whatever data you need from the route. Then just add a condition to add a selected class or not on your tab.

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