HTML DOM backgroundImage 属性

HTML DOM Style 对象参考手册

定义和用法

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>

HTML DOM Style 对象参考手册