新创建的MVC的_LogOnPartial文件
在 _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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
@Html.ActionLink("Log On", "LogOn", "Account", new { @class = "hover" })
然后使用 css 将图像放置在链接上,并在用户访问时放置另一个图像悬停在其上。
@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.