码迷,mamicode.com
首页 > 其他好文 > 详细

history对象属性和方法

时间:2014-10-13 13:21:49      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:style   color   ar   for   sp   window   用户   字符串   对象   

history对象保存着用户上网的历史记录,从窗口被打开的那一刻算起,history是window对象的属性,因此每个浏览器窗口、每个标签页乃至每个框架,都有自
己的history对象和特定的window对象关联。

history().go()
  history.go(0) 刷新当前页面
  history().go(-1) 后退一页
  history().go(1) 前进一页

传递字符串参数
  history.go("wrox.com") 跳转到最近的还有wrox.com的url处,可能前进也可能后退

history.back(); 后退一页
history.forward() 前进一页

history.length 属性 保存着历史记录的数量
对于加载到窗口、标签页或框架中的第一个页面而言,history.length 等于0

if(history.length==0){
//这是用户打开窗口后的第一个页面

}

history对象属性和方法

标签:style   color   ar   for   sp   window   用户   字符串   对象   

原文地址:http://www.cnblogs.com/jiechn/p/4021895.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!