MVC 母版页上的代码
我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在链接上使用 css :visited 伪类
use css :visited pseudo-class on link
按照 Jack 的说明使用 css 并检查当前路线上的信息以查看您显示的视图,例如
获取当前控制器或用路由中所需的任何数据替换控制器。然后只需添加一个条件即可在选项卡上添加或不添加选定的类。
Use css as stated by Jack and check the information on your current route to see what view your displaying, something like
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.