JavaScriptのlocationオブジェクトを利用する方法
1.プロトコル
document.writeln(location.protocol);
2.ポート番号
document.writeln(location.port);
3.URLのパス名
document.writeln(location.pathname);
4.URLのホスト名
document.writeln(location.hostname);
5.ホスト名とポート番号
document.writeln(location.host);
6.URLのクエリ部分
document.writeln(location.search);
7.URL全体
document.writeln(location.href);