设置或获取对象指定的"文件名"或路径。window.location.pathname=
<script>
document.write(window.location.pathname)
</script>
<br /><br />
设置或获取整个 URL 为字符串。window.location.href=
<script>
document.write(window.location.href);
</script>
<br /><br />
设置或获取与 URL 关联的端口号码。window.location.port=
<script>
document.write(window.location.port)
</script>
<br /><br />
设置或获取 URL 的协议部分。window.location.protocol=
<script>
document.write(window.location.protocol)
</script>
<br /><br />
设置或获取 href 属性中在井号"#"后面的分段。window.location.hash=
<script>
document.write(window.location.hash)
</script>
<br /><br />
设置或获取 location 或 URL 的 hostname 和 port 号码。window.location.host=
<script>
document.write(window.location.host)
</script>
<br /><br />
设置或获取 href 属性中跟在问号后面的部分。window.location.search=
<script>
document.write(window.location.search)
</script>
<br /><br />
网页刷新推荐-JS
<input type=button value=刷新 οnclick="history.go(0)">
<input type=button value=刷新 οnclick="location.reload()">
<input type=button value=刷新 οnclick="location=location">
<input type=button value=刷新 οnclick="location.assign(location)">
<input type=button value=刷新 οnclick="document.execCommand('Refresh')">
<input type=button value=刷新 οnclick="window.navigate(location)">
<input type=button value=刷新 οnclick="location.replace(location)">
<input type=button value=刷新 οnclick="document.URL=location.href">
<script>
function getRootPath(){
}
alert(getRootPath());
</script>