window.location.hashは、URLの「#」記号の後の部分を取得、もしくは、設定するプロパティ。
構文
<script type="text/javascript">
window.location.hash;
</script>
window.location.hash;
</script>
<script>~</script>
内であれば、window.
は、下記のように省略可能。
<script type="text/javascript">
location.hash;
</script>
location.hash;
</script>
戻り値
URLの「#」記号以降の部分。
サンプル
セキュリティ上の理由から、このプロパティに関するサンプルは掲載しません。