Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在除主页外的所有页面上显示顶级导航?我正在定义Layout.cshtml.
Layout.cshtml
我会使用 javascript 来隐藏它。当页面呈现时,其所有 html 将与任何继承的 html 合并,因此您应该能够将导航包装在 a 中<div id="nav">并使用简单的 jQuery 函数将其隐藏:
<div id="nav">
$('#nav').hide;