history Object--------------------------------------------------------------------------------Contains information about the URLs visited by the client.ResFor security reasons, the history object does not expose the actual URLs in the browser history. It does allow navigation through the browser history by exposing the back, forward, and go methods. A particular document in the browser history can be identified as an index relative to the current page. For example, specifying -1 as a parameter for the go method is the equivalent of clicking the Back button.This object is available in script as of Microsoft® Internet Explorer 3.0.MembersAll           Description 
back          Loads a URL from the History list. 
forward       Loads the next URL in the History list. 
go            Loads a URL from the History list. 
length        Retrieves the number of objects in a collection. 

解决方案 »

  1.   

    <script>
    var hwnd;
    for(iIndex=0;iIndex<10;iIndex++)
    {
    hwnd=window.open('','','');
    hwnd.history.go(-1*iIndex);
    document.write(":"+hwnd.location.pathname+"<br>");
    hwnd.close();
    }
    </script>
      

  2.   

    All           Description 好象没有这个属性或方法啊?
      

  3.   

    很不幸,这是俺看到的资料:关于History对象,该列表中维护的URL不能通过script秘密获取,除非你使用注册script,并且用户得到许可书上这么说的
      

  4.   

    aoeiuvcom(密码) 什么书啊 这么神奇 推介一下好吗
      

  5.   

    history对象有几个获取history列表中页面URL的属性,分别是
    history.current
    history.next
    history.previous
    不过遗憾的是,该属性仅NC支持,IE不支持。