1. URL 全体を文字列として設定または取得します:
window.location.href
2. URL に関連付けられたポート番号を設定または取得します:
window。 location.port
3. URL のプロトコル部分を設定または取得します
window.location.protocol
4. の疑問符に続く部分を設定または取得しますhref 属性
window.location.search
5. 変数の値を取得します (等号以降の部分を切り取ります)
var url = window.location.search; >// アラート(url.lastIndexOf('= '));
var loc = url.substring(url.lastIndexOf('=') 1, url.length); URL のプロトコル部分を設定または取得します:
window.location.protocol
7. href 属性のハッシュ記号「#」の後のセグメントを設定または取得します:
window.location.hash
8. 場所または URL のホスト名とポート番号を設定または取得します:
window.location.host