欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

JavaScript编程中window的location与history对象详解

程序员文章站 2023-11-25 11:39:46
window location window.location 对象用于获得当前页面的地址 (url),并把浏览器重定向到新的页面。 window.loca...

window location

  • window.location 对象用于获得当前页面的地址 (url),并把浏览器重定向到新的页面。
  • window.location 对象在编写时可不使用 window 这个前缀。 一些例子:
  • 一些实例:
  • location.hostname 返回 web 主机的域名
  • location.pathname 返回当前页面的路径和文件名
  • location.port 返回 web 主机的端口 (80 或 443)
  • location.protocol 返回所使用的 web 协议(http:// 或 https://)

window location href

location.href 属性返回当前页面的 url。
实例
返回(当前页面的)整个 url:

<script>

document.write(location.href);

</script>



window location pathname
location.pathname 属性返回 url 的路径名。
实例
返回当前 url 的路径名:

<script>

document.write(location.pathname);

</script>

以上代码输出为:

/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>


window history
window.history对象在编写时可不使用 window 这个前缀。
为了保护用户隐私,对 javascript 访问该对象的方法做出了限制。
一些方法:

  • history.back() - 与在浏览器点击后退按钮相同
  • history.forward() - 与在浏览器中点击按钮向前相同

window history back

history.back() 方法加载历史列表中的前一个 url。
这与在浏览器中点击后退按钮是相同的:
实例
在页面上创建后退按钮:

<html>
<head>
<script>
function goback()
 {
 window.history.back()
 }
</script>
</head>
<body>

<input type="button" value="back" onclick="goback()">

</body>
</html>


window history forward
history forward() 方法加载历史列表中的下一个 url。
这与在浏览器中点击前进按钮是相同的:
实例
在页面上创建一个向前的按钮:

<html>
<head>
<script>
function goforward()
 {
 window.history.forward()
 }
</script>
</head>
<body>

<input type="button" value="forward" onclick="goforward()">

</body>
</html>