Body background 属性
定义和用法
background 属性可设置或者返回 body 元素background属性的值。
background 属性描述了文档的背景图片。
语法
bodyObject.background=URL
浏览器支持
所有主要浏览器都支持 background 属性。
实例
返回 body 元素的background属性值:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
</head>
<body id="logo" background="logo.png">
<script>
document.write("背景图片是: ")
document.write(document.getElementById("logo").background);
</script>
</body>
</html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
</head>
<body id="logo" background="logo.png">
<script>
document.write("背景图片是: ")
document.write(document.getElementById("logo").background);
</script>
</body>
</html>
版权声明:本页面内容旨在传播知识,为用户自行发布,若有侵权等问题请及时与本网联系,我们将第一时间处理。E-mail:284563525@qq.com