- JavaScript
-
2014-06-30 - 更新:2014-08-19
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
![](https://k-sugi.sakura.ne.jp/wp-content/themes/chic_grid3/images/icon-tag.png)