pathnameプロパティ
pathnameプロパティはサーバのホスト名またはIPアドレスです。
シンタックス
objectName.pathnameオブジェクト
- locationオブジェクト
例
<script> document.write("例1: " + location.hash + "<p>"); document.write("例2: " + location.host + "<p>"); document.write("例3: " + location.hostname + "<p>"); document.write("例4: " + location.href + "<p>"); document.write("例5: " + location.pathname + "<p>"); document.write("例6: " + location.port + "<p>"); document.write("例7: " + location.protocol + "<p>"); document.write("例8: " + location.search + "<p>"); document.write("例9: " + location.target); </script>
関連したプロパティ