用jquery删除css:hover属性

前端之家收集整理的这篇文章主要介绍了用jquery删除css:hover属性前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
让我说
<style>
    #container:hover{background:red}
</style>
<div id="container"><input type="submit"></div>

当我在提交时悬停,#container仍然是红色的.我可以删除那个:使用jquery将鼠标悬停在鼠标悬停上吗?我不想更改bg $(‘#container’)css(‘backgroundColor’,’color’),我需要像$(‘#container’)这样的东西removeAttr(‘hover’).

解决方法

不幸的是,使用jQuery管理CSS伪类是不可能的.

我建议你操纵课程,如下所示:

<style>
    .red:hover{background:red}
</style>

<div id="container" class="red"><input type="submit"></div>

<script>
    $("#container").removeClass("red");
</script>
原文链接:https://www.f2er.com/jquery/180059.html

猜你在找的jQuery相关文章