标签活动属性
我可以切换元素的“活动”状态来调用 css a:active
属性吗?
Can I toggle the 'active' status of an element to invoke css a:active
properties?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我可以切换元素的“活动”状态来调用 css a:active
属性吗?
Can I toggle the 'active' status of an element to invoke css a:active
properties?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
如果将鼠标按住锚元素(或任何元素),它将调用 active 属性。如果您想动态执行此操作(在 JavaScript 中),您可以创建一个类
a.active
,并从 dom 上的 className 属性添加/删除"active"
元素。If you hold your mouse down on the anchor element (or any element), it will invoke the active property. If you want to do this dynamically (in JavaScript), you can create a class,
a.active
, and add/remove"active"
from the className property on the dom element.