本ページには広告が含まれています。
現在の文書の背景色を取得・設定します。
body要素またはframeset要素に適用されます。
適用されない場合はブラウザ上で右クリックをし「要素の検査(L)」を開き、<body>タグの属性を確認してください。
<body>タグにCSSでbackground-colorが指定されている場合、bgColorプロパティが適用されない場合があります。
- 非推奨
- この機能は現在非推奨となっています。
- 構文
- color = Document.bgColor
- Document.bgColor = color
- color = Document.bgColor
- 引数
- 戻り値
使い方
http://example.comを開き、<body>要素に適用されている背景色を取得します。
DIM IE = CREATEOLEOBJ("InternetExplorer.Application")
IE.Visible = TRUE
IE.Navigate("http://example.com")
BusyWait(IE)
DIM Document = IE.Document
PRINT Document.bgColor
- 結果
#f0f0f2