>> JavaScriptトップに戻る
>> JavaScriptトップに戻る
Documentオブジェクト
関数 | 説明 |
---|---|
document.alinkColor | アクティブリンクの文字色を設定・取得する |
document.anchors.length | ページ内のアンカー数を取得する |
document.bgColor | 背景色を設定・取得する |
document.cookie | クッキーの保存、取得を行う |
document.clear() | ページ内容を消去する |
document.close() | openメソッドで書き出したドキュメントの出力を終了する |
document.domain | ドメイン名を取得 |
document.fgColor | 通常の文字色を設定・取得する |
document.getSelection() | 選択した文字列を取得 |
document.lastModified | 最終更新日を取得 |
document.linkColor | リンクの文字色を設定・取得する |
document.location | ドキュメントのURLを設定・取得する |
document.open() | ドキュメントの出力を開始する(closeで閉じる) |
document.routeEvent() | キューから取り出したイベントを元に戻す |
document.referrer | リファラーの参照を行う |
document.title | ページタイトルを設定・取得する |
document.URL | ページのURLを取得する |
document.vlinkColor | 訪問済リンクの文字色を設定・取得する |
document.write() | ページに文字列を出力 |
document.writeln() | ページに文字列を出力して改行する |
document.getElementsByTagName() | 該当タグのオブジェクトを配列で取得 |
document.getElementsByName() | 該当name属性のオブジェクトを配列で取得 |
document.getElementById() | 該当IDのオブジェクトを取得 |
>> JavaScriptトップに戻る