window.open開啟一個置中的視窗

來源:互聯網
上載者:User

法一:

   window.open('COS1_Edit.asp,'','status=no,menubar=no,scrollbars=Yes,top=50,left=50,height=400,width=550');  
  其中的"top"和"Left"就是讓你輸入參數來確定視窗的位置。如果要置中,根據你要開啟視窗的大小你來輸入合理的值,就可以達到置中的目的!

 

法二:

   <!--  
  <script   language="javascript">  
  if(screen.width=="640")  
  {  
          window.open("news.asp","newwindow","height=480,   width=405,   top=0,   left=225,   toolbar=no,   menubar=no,   scrollbars=yes,   resizable=no,location=no,   status=no")  
  }  
  else   if(screen.width=="800")  
  {  
          window.open("news.asp","newwindow","height=480,   width=405,   top=0,   left=385,   toolbar=no,   menubar=no,   scrollbars=yes,   resizable=no,location=no,   status=no")  
  }  
  else   if(screen.width=="1024")  
  {  
          window.open("news.asp","newwindow","height=480,   width=405,   top=0,   left=610,   toolbar=no,   menubar=no,   scrollbars=yes,   resizable=no,location=no,   status=no")  
  }  
  </script>  
  -->  
  以上是彈出在右上方的。  
  主要根據表單跟螢幕大小計算top跟left,top=(screen.height-height)/2     left=(screen.width-width)/2

 

 

法三:

<script   language="javascript">  
  var   wWidth=460;  
  var   wHeight=500;  
  var   url="http://www.xiaobin.net";  
  window.open(url,,left=+(window.screen.width-wWidth)/2+,   top=+(window.screen.height-wHeight)/2+,   width=+wWidth+,   height=+wHeight+)  
  </script>

 

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.