如何使用 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>

更新时间:11-12-2019

10K+ 浏览

开启你的 职业生涯

完成该课程以获得认证

开始
广告