我有一个像这样水平显示的导航菜单。
<div id="menucontainer">
<ul id="menu">
<li>@Html.ActionLink("Home", "Index", "Home")</li>
<li>@Html.ActionLink("About Us", "About_Us", "Home")</li>
<li>@Html.ActionLink("What We Do", "What_We_Do", "Home")</li>
<li>@Html.ActionLink("FAQ's", "Answers_To_Questions", "Home")</li>
<li>@Html.ActionLink("Deed Transfer Gurantee's", "Deed_Transfer_Guarantee", "Home")
</li>
<li>@Html.ActionLink("Power Point", "Index", "Home")</li>
<li>@Html.ActionLink("Get Help", "Index", "Home")</li>
<li>@Html.ActionLink("Mortgage Cancellation", "Index", "Home")</li>
<li>@Html.ActionLink("Contact", "Index", "Home")</li>
</ul>
</div>
我正在寻找一种方法来创建一个只有在特定链接被鼠标悬停时才可见的下拉链接。当 Deed_Transfer_Guarantee 悬停在上方时,我需要 Deed_Transfer_Guarantee ActionLink 来显示另一个 ActionLink。我还没有找到一个明确的例子。提前感谢您的帮助!