HTML BodyElement.bgColor属性用于返回DOMString代表文档的背景色。
用法:
BodyElement.bgColor
返回值:该属性返回一个DOMString代表文档的背景色。
范例1:
HTML
<!DOCTYPE html>
<html>
<!-- body tag starts here -->
<body bgColor="green">
<center>
<h1>GeeksforGeeks</h1>
<h2>HTMLBodyElement.bgColor Property</h2>
</center>
<script type="text/javascript">
alert(document.body.bgColor);
</script>
</body>
</html>
输出:
范例2:
HTML
<!DOCTYPE html>
<html>
<!-- body tag starts here -->
<body bgColor="yellow">
<center>
<h1>GeeksforGeeks</h1>
<h2>HTMLBodyElement.bgColor Property</h2>
</center>
<script type="text/javascript">
console.log(document.body.bgColor);
</script>
</body>
</html>
输出:
支持的浏览器:
- 谷歌浏览器
- IE浏览器
- Firefox
- 苹果Safari
- Opera
相关用法
- HTML DOMRect height用法及代码示例
- HTML ImageData.height用法及代码示例
- HTML ImageData.data用法及代码示例
- HTML ImageData.width用法及代码示例
- HTML DOMRectReadOnly x用法及代码示例
注:本文由纯净天空筛选整理自taran910大神的英文原创作品 Web API HTMLBodyElement.bgColor property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。