你想要用框架吗?
定时刷新
<meta http-eqviv="refresh" content="2;url=地址">2可以自己改,单位为秒,框架刷新不会影响其他窗口的内容

解决方案 »

  1.   

    location = "url.htm#CurrentLabel";或者记住当前浏览时的offsetTop和offsetLeft
    <script>
    function onReload()
    {
      var top = document.body.offsetTop;
      var left = document.body.offsetLeft;
      location = "url.htm#" + top + "#" + left;
    }function ShowAtPosition()
    {
      var m_str = location.href;
      intd = m_str.split("#");
      if(intd.length == 3)
      {
        window.scrollTo(intd[2], intd[1]);
      }
    }
    </script><body onload=ShowAtPosition()>
    </body>