JavaScript Window Location
Posted 1994jinnan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript Window Location相关的知识,希望对你有一定的参考价值。
window.location对象可用于获取当前页面地址(url)并把浏览器重定向到新页面。
window.location 对象可不带 window 前缀书写。
一些例子:
- window.location.href 返回当前页面的 href (URL)
- window.location.hostname 返回 web 主机的域名
- window.location.pathname 返回当前页面的路径或文件名
- window.location.protocol 返回使用的 web 协议(http: 或 https:)
- window.location.assign 加载新文档
window.location.assign() 方法加载新文档。
实例
加载新文档:
<!DOCTYPE html>
<html>
<body>
<h1>window.location 对象</h1>
<input type="button" value="加载新的文档" onclick="newDoc()">
<script>
function newDoc() {
window.location.assign("http://www.w3school.com.cn")
}
</script>
</body>
</html>
来源:站长资讯平台
以上是关于JavaScript Window Location的主要内容,如果未能解决你的问题,请参考以下文章
javascript里面window.open()里面传递带参数的页面怎么写?
Arison [JS]window.location获取url各项参数详解
window.location.href=window.location.href 和 window.location.reload() 的区别