オブジェクトとは、複数の情報や機能を持った 「まとまり」です。
そして、documentオブジェクトは現在ブラウザで扱っている文書に関連するすべての情報を持っている。
<script type="text/javascript"> document.write(document.URL + "<br>"); document.write(document.location + "<br>"); document.write(document.location.host + "<br>"); document.write(document.location.hostname + "<br>"); </script> 上記は次のように見えます。 document.URLは参照のみで、document.locationは設定も可能