美文网首页
JavaScript Window Location

JavaScript Window Location

作者: S大偉 | 来源:发表于2018-02-23 13:52 被阅读0次

window.location 对象用于获得当前页面的地址 (URL),并把浏览器重定向到新的页面。

Window Location

window.location 对象在编写时可不使用 window 这个前缀。 一些例子:

一些实例:
location.hostname 返回 web 主机的域名
location.pathname 返回当前页面的路径和文件名
location.port 返回 web 主机的端口 (80 或 443)
location.protocol 返回所使用的 web 协议(http:// 或 https://)

Window Location Href

location.href 属性返回当前页面的整个 URL。
http://www.runoob.com/js/js-window-location.html

Window Location Pathname

location.pathname 属性返回 URL 的路径名
/js/js-window-location.html

Window Location Assign

location.assign() 方法加载新的文档。

<html>
<head>
<script>
function newDoc()
  {
  window.location.assign("http://www.w3cschool.cc")
  }
</script>
</head>
<body>

<input type="button" value="Load new document" onclick="newDoc()">

</body>
</html>

相关文章

网友评论

      本文标题:JavaScript Window Location

      本文链接:https://www.haomeiwen.com/subject/deitxftx.html