HTML DOM background 属性
JavaScript基础 2022-06-08 14:24:03小码哥的IT人生shichen
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>
TIY
完整实例【改变文档背景的样式】:
<html>
<head>
<script type="text/javascript">
function setStyle()
{
document.body.style.background="#FFCC80 url(/i/eg_bg_desert.jpg) repeat-y";
}
</script>
</head>
<body>
<input type="button" onclick="setStyle()" value="Set background style" />
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html