オブジェクト | 解説 | 使用例 |
---|---|---|
document.alinkColor | リンクされている文字の色を設定 (アクティブなリンクの表示色) | document.alinkColor="#FF0022"; document.alinkColor="00FFCC"; document.alinkColor="red"; document.alinkColor=blue; |
document.bgColor | 文字の背景色を設定 | document.bgColor="#FF0022"; document.bgColor="00FFCC"; document.bgColor="red"; document.bgColor=blue; |
document.fgColor | フォアグランドカラーを設定 | document.fgColor="#FF0022"; document.fgColor="00FFCC"; document.fgColor="red"; document.fgColor=blue; |
document.anchors | アンカー | document.anchors.length |
document.clear() | 別ウィンドウに表示されているドキュメントを消去 | document.clear(); |
document.close() | 別ウィンドウに表示されているドキュメントをクローズ | document.close(); |
document.open() | 別ウィンドウに表示されているドキュメントをオープン | document.open; |
document.cookie | 最後に参照された時間を返します | document.write(document.cookie); |
document.location | ロケーション(URL)を返します | document.write(document.location); |
document.title | ドキュメントのタイトルを返します | document.write(document.title); |
document.lastModified | 文書の最終更新日を返します |