如何使用jQuery在CSS中设置背景图像?


要使用jQuery设置背景图像,请使用jQuery css() 方法。

示例

使用 background-image 属性向网页添加背景图像。

实时演示

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
   $(".bg").css("background-image", "url('/css/images/css.jpg')");
});
</script>
</head>
<body class="bg">
</body>
</html>

更新于:2019年12月11日

830次浏览

开启你的 事业

通过完成课程获得认证

开始
广告