Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Document.bgColor

这篇翻译不完整。请帮忙从英语翻译这篇文章

已废弃
该特性已经从 Web 标准中删除,虽然一些浏览器目前仍然支持它,但也许会在未来的某个时间停止支持,请尽量不要使用该特性。

 bgColor 获取/设置当前文档的背景颜色

语法

color = document.bgColor
document.bgColor =color 

参数

  • color 表示颜色的字符串如“red”,或者是十六进制的色值如“#ff0000”。

示例

document.bgColor = "darkblue"; 

笔记

这个属性在Mozilla Firefox中的默认值是白色”#ffffff“。

document.bgColor 在 DOM Level 2 HTML 中已经不推荐使用。 推荐使用CSS的 background-color 或者 document.body.style.backgroundColor 来给文档设置背景颜色。 另外一种方式是使用 document.body.bgColor, 这种方式也已经不推荐使用了。

规范

MSDN: bgColor Property

文档标签和贡献者

 此页面的贡献者: mochen
 最后编辑者: mochen,