如何在 MooTools 中的悬停元素上添加类?
我正在使用 MooTools 1.12
如何在悬停时将类添加到 a 元素?
例如
我有这个
<a href="example.html">Some text</a>
<a href="example.html">Some text</a>
<a href="example.html">Some text</a>
<a href="example.html">Some text</a>
,当我将鼠标悬停在链接上时,
<a href="example.html">Some text</a>
<a href="example.html">Some text</a>
<a class="hover" href="example.html">Some text</a> <!-- I am over this link -->
<a href="example.html">Some text</a>
anf 我想要这个:提前致谢
I am using MooTools 1.12
How to ad a class to an a element on hover?
e.g.
I have this
<a href="example.html">Some text</a>
<a href="example.html">Some text</a>
<a href="example.html">Some text</a>
<a href="example.html">Some text</a>
anf when hovering overr a link I want this:
<a href="example.html">Some text</a>
<a href="example.html">Some text</a>
<a class="hover" href="example.html">Some text</a> <!-- I am over this link -->
<a href="example.html">Some text</a>
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需定义一个事件来添加或删除
mouseenter
和mouseleave
上的类。但是,如果您使用它来更改链接上的 CSS 属性,则最好在 CSS 中使用
:hover
伪类。使用伪类将使您的更改能够在没有 Javascript 的浏览器上运行。Simply define an event which adds or remove the class on
mouseenter
andmouseleave
.However, if you are using this to change CSS properties on link, you are better off using the
:hover
pseudo-class in CSS. Using the pseudo-class will enable your changes to work on browsers without Javascript.