では、実際に以下の URL でアクセスされた場合の取得結果を確認してみます。 URL : http://localhost:8080/test/test.html?p1=1&p2=2#hash alert('location.href = ' + window.location.href); alert('location.protocol = ' + window.location.protocol); alert('location.host = ' + window.location.host); alert('location.hostname = ' + window.location.hostname); alert('location.port = ' + window.location.port); alert('location.pathname = ' + wind

