如何使用jQuery更改背景图片?

要使用jQuery更改背景图片,请使用jQuerycss()方法。该背景图像的CSS属性是用来改变的背景图像。

示例

您可以尝试运行以下代码,以了解如何使用jQuery更改背景图片:

<!DOCTYPE html>

<html>

<head>

<script src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>

<script>

$(document).ready(function(){

    $("body").on({

        mouseenter: function(){

            $(this).css("background-image", "url('/css/images/css.jpg')");

        },  

    });    

});

</script>

</head>

<body>

<p>Move the mouse pointer on the page to change the background image.</p>

</body>

</html>

以上是 如何使用jQuery更改背景图片? 的全部内容, 来源链接: utcz.com/z/351515.html

回到顶部