非推奨
This feature has been removed from the Web standards. Though some browsers may still support it, it is in the process of being dropped. Do not use it in old or new projects. Pages or Web apps using it may break at any time.
概要
bgColor
は、現在のドキュメントの背景色の取得 / 設定に用います。
構文
color = document.bgColor; // 取得 document.bgColor = color // 設定;
引数
color
: 色名 ("white"
等) またはカラーコード ("#FFFFFF"
等) の文字列
例
document.fgColor = "white"; // 前景色を白に document.bgColor = "darkblue"; // 背景色をダークブルーに
注記
Mozilla Firefox ではこのプロパティの初期値は #FFFFFF
となっています。
document.bgColor
は DOM Level 2 HTML で非推奨となっており、代替となる document.body.bgColor
も HTML 4.01 で非推奨となっています。
document.body.style.backgroundColor
に値を設定する事によって CSS プロパティ background-color
を操作し、これを実現する事ができます。
仕様
DOM Level 0。どの標準にも属しません。