window.document.location.reload();or
window.top.document.location.reload();

解决方案 »

  1.   

    <input type="button" name="renovates" value="刷新" onclick="renovates()"/><script>
    function renovates(){
        document.location.reload();
    }
    </script>
      

  2.   

    reload(true);//从服务器上下载新的,默认为false,从缓存中取。
      

  3.   

    ls的几种方法都试过了 还是不行  T_T
      

  4.   

    ok了原来 <input type="button" name="renovates" value="刷新" onclick="renovates()"/>里 name属性 “renovates” 和 renovates() 重名了 去掉name属性就行了 反正也用不上
      

  5.   

    ls的几种方法都试过了 还是不行  T_T
    ==================================8会吧?t.htm
    <input type="text">
    <input type="button" value="open" onclick="window.open('o.htm','','width=200,height=100');">o.htm
    <input type="button" name="renovates" value="刷新" onclick="renovates()"/><script>
    function renovates(){
        window.opener.document.location.reload();
    }
    </script>在t.htm的文本框随便输入,再open,再open开的页点[刷新]看看!