在_LogonPartial.cshtml中有一个用户登录的动作链接,我想用一个按钮替换@:[ @Html.ActionLink("Log On", "LogOn", "Account") ]
或者我可以在onmouseover和onmouseout上使用的图像,但我不知道如何< / p>
答案 0 :(得分:2)
@Html.ActionLink("Log On", "LogOn", "Account", new { @class = "hover" })
然后使用css在链接上放置图像,并在用户将鼠标悬停在链接上时放置另一个图像。
.hover{
background: url('/path/to/myImage.png');
}
.hover:hover{
background: url('/path/to/myOtherImage.png');
}