HTML DOM backgroundImage 属性
JavaScript基础 2022-06-08 14:24:15小码哥的IT人生shichen
HTML DOM backgroundImage 属性
定义和用法
backgroundImage 属性设置元素的背景图像。
语法:
Object.style.backgroundImage=url(URL)|none
参数 | 描述 |
---|---|
url(URL) | 图像的路径。 |
none | 无背景图像。 |
提示和注释
提示:请设置一种可用的背景颜色,这样的话,假如背景图像不可用,页面也可获得良好的视觉效果。
实例
本例设置了背景图像:
<html>
<head>
<script type="text/javascript">
function changeStyle()
{
document.body.style.backgroundColor="#FFCC80";
document.body.style.backgroundImage="url(bgdesert.jpg)";
}
</script>
</head>
<body>
<input type="button" onclick="changeStyle()"
value="Set background image" />
</body>
</html>
TIY
完整实例【设置背景图像】:
<html>
<head>
<script type="text/javascript">
function changeStyle()
{
document.body.style.backgroundColor="#FFCC80";
document.body.style.backgroundImage="url(/i/eg_bg_desert.jpg)";
}
</script>
</head>
<body>
<input type="button" onclick="changeStyle()" value="Set background-image" />
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html