除非你在父页用screen.width先判断,在用window.open打开的新页………………

解决方案 »

  1.   

    <center>
    ... → 所有html元素都写在这里面</center>
      

  2.   

    <script>window.open('Default.asp','','toolbar=no,location=no,directories=no,status=no,menubar=0,scrollbars=0,resizable=0,copyhistory=no,width=600,height=440,left='+(window.screen.width-600)/2+',top='+(window.screen.height-420)/2+',screenX='+(window.screen.width-600)/2+',screenY='+(window.screen.height-420)/2+'');window.opener=null;window.close();</script>
      

  3.   

    不知道楼主的意思是不是这样喔,我是这样做的:
    <table align="center">
    <tr>
    <td>
    网页内容
    </td>
    </tr>
    </table>
    但不要把所以网页内容放到一个表格里,这样对下载效果有影响.按内容分几个表格放,每个表格都要align="center"
      

  4.   

    感谢  hrstudy(小马) 有点偏差,不过已经能够达到我的目的,谢谢!^V^