当访问者选项卡选择元素时如何更改样式?
有没有办法让锚标记在用户点击时更改其样式(背景图像)?我尝试在 a:hover 和 a:active 上设置 CSS 样式,但似乎不起作用。
此外,该锚标记位于表格单元格中。基本上,我有这种样式来更改用户即将选择的行的外观,当用户选项卡到锚标记时,我希望该行应用相同的样式。
如果我需要使用 jQuery,那么我们将不胜感激。
Is there a way to have the anchor tag change its style (background image) when the user tabs to it? I tried setting the CSS style on a:hover and a:active but it doesn't seem to work.
Also, this anchor tag is in a table cell. Basically I have this style for changing the look of the row the user is about to select any I want the row to apply the same style when user tabs to the anchor tag.
If I need to use jQuery, then a sample would be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要使用
:focus
伪-类。You need to use the
:focus
pseudo-class.您可以使用 focus 事件在 javascript 中执行此操作。
You can do this in javascript using the focus event.