window.history.go(参数);
表示整个窗口URL跳转。
参数 -1 表示后退一页,-2表示后退2页
参数 1 表示 前进1 参数2表示前进2

解决方案 »

  1.   

    go--------------------------------------------------------------------------------DescriptionLoads a URL in the History list. Syntax
    object.go(delta | location)Parameter Description 
    delta | location  delta is an integer representing a relative position in the History list. location is a string representing all or part of a URL in the History list. Return ValueNo return value. ResTrying to go past the beginning or end of the history does not generate an error. Instead, you are left at the current page. Applies Tohistory See Also
    back, forward 
      

  2.   

    这样的问题自己查Ieref.chm帮助就可以了
    到http://203.64.35.73/dn60acht2/msdn/下载MSDN中的IEREF.chm
      

  3.   

    属性window.history引用的是history对象,它是一个数组,其中的元素是浏览过的窗口或框架的url。go()等价于在go菜单中进行选择。参数为整树
    正数 代表前进
    0    代表刷新
    负数 代表后退window.history.go(-2)
    后退两个窗口
      

  4.   

    在msdn里面输入 history object或者history ob就可以查到了,还有back与foward方法,自己要学会查msdn
      

  5.   

    参数是怎么写的???
    参数是如何定义的???
    <input type="button" onclick="history.go(-1)" value="返回上一页">
    <input type="button" onclick="history.go(1)" value="返回下一页">比如我已经打开了3个窗口!!如何在第三个窗口里用这个方法回到第一个窗口中???
    History对象是基于单个窗口的。
    第个窗口有自己的History而他们之间互不干涉,是两个不同的环境.
    所以,不能用history.go来实现,第三个窗口回到第一个窗口.HTML
    http://vip.5d.cn/friday/upload/dhtml html&css.chm