MVC中的鼠标悬停事件
我正在 MVC 中工作,我想在 asp GridView 中显示我的数据,并且我还想在鼠标悬停该特定行时更改行背景色。请让我知道我该怎么做。
提前致谢, 格巴特讷格尔。
I am working in MVC and I want to show my data in an asp GridView and I also want to change the row backcolor whenever mouse hover that particular row. Please let me know how can I do that.
Thanks in advance,
gbhatnagar.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Javascript (JQUERY!) 并为该行设置悬停事件。因此,当鼠标悬停在上方时,您可以将先前突出显示的行切换回正常状态并更改当前行的颜色。
您可以使用 Jquery 并通过行 css 类和突出显示的行 css 类轻松完成此操作。
Use Javascript (JQUERY!) and have an on hover event for the row. So when hovered over, you switch the previously highlighted row go back to normal and change the colour of the current row.
You could easily do it with Jquery and by having a row css class and a highlighted row css class.