如何使用 jQuery 更改背景颜色?


要使用 jQuery 更改背景颜色,请使用 jQuery css() 属性。我们将在鼠标悬停时使用 jQuery on() 和 css() 方法更改背景颜色。

示例

你可以尝试运行以下代码来学习如何使用 jQuery 更改背景颜色

实时演示

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("body").on({
        mouseenter: function(){
            $(this).css("background-color", "gray");
        },  
       
        mouseleave: function(){
            $(this).css("background-color", "red");
        },
       
        dblclick: function(){
            $(this).css("background-color", "yellow");
        }
    });
});
</script>
</head>
<body>

<p>Double click and move the mouse pointer to change the background color.</p>

</body>
</html>

更新于:2019 年 12 月 11 日

10K+ 浏览量

开启你的 职业生涯

完成课程即可获得认证

开始
广告