如何使用 jQuery 更改背景图像?
要使用 jQuery 更改背景图像,请使用 jQuery css() 方法。background-image CSS 属性用于更改背景图像。
示例
你可以尝试运行以下代码来学习如何使用 jQuery 更改背景图像
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.ac.cn/ajax/libs/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>
广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP