- JavaScript
- 2014-06-30 - 更新:2014-08-19
この記事は最終更新日から1年以上経過しています。
JavaScriptで、現在表示しているページのURLを取得します。
document.write(window.location.protocol + "//" + window.location.host + window.location.pathname + "<br>\n"); document.write(window.location.protocol + "//" + window.location.hostname + window.location.pathname + "<br>\n"); document.write(document.URL);
出力結果
http://www.sankikensetsu.co.jp/test.html http://www.sankikensetsu.co.jp/test.html http://www.sankikensetsu.co.jp/test.html
1,289 views