i 需要改进我 ASp. net mvc3 网络应用程序的默认布局模板中的以下内容。
<div id="logindisplay">
@Html.Partial("_LogOnPartial")
</div>
<nav>
<ul id="menu">
<li>@Html.ActionLink("Home", "Index", "Home")</li>
<li>@Html.ActionLink("Statistics", "Index", "Statistics")</li>
<li>@Html.ActionLink("About", "About", "Home")</li>
</ul>
</nav>
</header>
<section id="main">
@RenderBody()
</section>
我想做的是:
- How i can change the colour of the currently selected
<li>...</li>
which is inside the<ul id="menu">.
. which can help the users to recognize the web pages there are currently viewing. - How i can add a sub menu which will be shown automatically when the user moves the mouse over a specific
<li></li>.
BR