HTML DOM background 属性
定义和用法
background 属性在一个声明中设置所有的背景属性。
语法:
Object.style.background=background-color background-image background-repeat background-attachment background-position
参数 | 描述 | 值 |
---|---|---|
background-color | 设置元素的背景色。 |
|
background-image | 设置背景图像。 |
|
background-repeat | 设置背景图像是否及如何重复。 |
|
background-attachment | 背景图像是否固定或者随着页面的其余部分滚动。 |
|
background-position | 设置背景图像的起始位置。 |
|
实例
下面的例子改变了文档背景的样式:
<html>
<head>
<script type="text/javascript">
function setStyle()
{
document.body.style.background="#FFCC80 url(bgdesert.jpg) repeat-y";
}
</script>
</head>
<body>
<input type="button" onclick="setStyle()"
value="Set background style" />
</body>
</html>