非推奨
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.
概要
fgColor
は、現在のドキュメントの前景色または文字色の取得 / 設定に用います。
構文
color = document.fgColor; // 取得 document.fgColor = color // 設定;
引数
color
: 色名 ("black"
等) またはカラーコード ("#000000"
等) の文字列
例
document.fgColor = "white"; // 前景色を白に document.bgColor = "darkblue"; // 背景色をダークブルーに
注記
Mozilla Firefox ではこのプロパティの初期値は #000000
となっています。
document.fgColor
は DOM Level 2 HTML で非推奨となっており、代替となる document.body.text
も HTML 4.01 で非推奨となっています。
document.body.style.color
に値を設定する事によって CSS プロパティ color
を操作し、これを実現する事ができます。
仕様
DOM Level 0。どの標準にも属しません。