設定或取得物件指定的「檔案名稱」或路徑。
<script><BR>alert(window.location.pathname)<BR></script>
設定或取得整個 URL 為字串。
<script><BR>alert(window.location.href); <BR></script>
設定或取得與 URL 關聯的連接埠號碼。
<script><BR>alert(window.location.port)<BR></script>
設定或取得 URL 的協定部分。
<script><BR>alert(window.location.protocol)<BR></script>
設定或取得 href 屬性中井號「#」後面的分段。
<script><BR>alert(window.location.hash)<BR></script>
設定或取得 location 或 URL 的 hostname 和 port 號碼。
<script><BR>alert(window.location.host)<BR></script>
設定或取得 href 屬性中跟在問號後面的部分。
<script><BR>alert(window.location.search)<BR></script>
網頁刷新推薦-JS