document.fgColor
ページ全体の文字色を参照/設定します。文字色を読み出した場合、ブラウザによって読み出し結果が異なるので注意が必要です。例えば<body text="red">となっている場合、Safari 2、iCabではredの文字が返されますが、FirefoxやOperaでは#ff0000とカラーコードが返されます。
構文
document.fgColor
例文
<html> <head> <title>document.fgColor</title> </head> <body text="orange"> <script type="text/javascript"><!-- document.write(document.fgColor); // --></script> </body> </html>
関連記事
- document.writeln
- document.write
- document.vlinkColor
- document.linkColor
- document.alinkColor
- document.defaultCharset
- document.charset
- document.characterSet
- document.bgColor
スポンサーリンク