新创建的MVC的_LogOnPartial文件

发布于 2025-01-06 18:41:58 字数 165 浏览 0 评论 0原文

在 _LogonPartial.cshtml 中有一个供用户登录的操作链接,我想将 @:[ @Html.ActionLink("Log On", "LogOn", "Account") ] 替换为我可以使用 onmouseover 和 onmouseout 的按钮或图像,但我不知道如何使用

In the _LogonPartial.cshtml there is a actionlink for user to log on, I would like to replace @:[ @Html.ActionLink("Log On", "LogOn", "Account") ]with a button or an image i can use onmouseover and onmouseout but I don't know how

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

压抑⊿情绪 2025-01-13 18:41:58

@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');  
}

@Html.ActionLink("Log On", "LogOn", "Account", new { @class = "hover" })

then use css to place an image on the link and another when the user hovers on it.

.hover{  
background: url('/path/to/myImage.png');  
}  
.hover:hover{  
  background: url('/path/to/myOtherImage.png');  
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文