不可能吧^
你是怎么window.open的?
把你window.open的代码铁出来

解决方案 »

  1.   

    你是在超链接上缴的代码吗?
    这样写试试:
    <a href="#" onclick="javascript:window.open(.....);">
      

  2.   

    <script language="javascript">
    function PopUrl(htmlurl)
    {
      var newwin=window.open(htmlurl,'Title','left='+(window.top.screen.width-454)/2+',top='+(window.top.screen.height-360)/2+',height=248,width=454,, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no, status=no',false); return false;
    }
    </script>
    <a onclick="return PopUrl(this.href);" href="url....">修改注册资料</a>注意return false;
      

  3.   

    <a href="#" onclick="javascript:window.open(.....);">