用JS打开windows下的几种窗体格式

  1. <html>  
  2. <head>  
  3.     <title>打开新窗口</title>      
  4. <SCRIPT>  
  5. //打开新窗口全屏  
  6. function ow(owurl){  
  7.     var tmp=window.open("about:blank","","fullscreen=1")  
  8.     tmp.moveTo(0,0)  
  9.     tmp.resizeTo(screen.width+20,screen.height)  
  10.     tmp.focus()  
  11.     tmp.location=owurl  
  12. }  
  13. function WinOpen() {  
  14.     window.open("http://www.baidu.com","DisplayWindow","toolbar=no,,menubar=no,location=no,scrollbars=no");  
  15. }  
  16. //网页消息对话框  
  17. function openModelessDialog(){  
  18.     var features='status:0;dialogWidth:470px;dialogHeight:270px;resizable:0;scroll:0;center:1';  
  19.     showModelessDialog("http://www.baidu.com",window,features);  
  20. }  
  21.   
  22. //网页对话框,一次只能打开一个  
  23. function openModalDialog(){  
  24.     var features='status:0;dialogWidth:470px;dialogHeight:270px;resizable:0;scroll:0;center:1';  
  25.     showModalDialog("http://www.baidu.com",window,features);  
  26. }  
  27.   
  28. //子窗口打开,关闭父窗口  
  29. function openChild(){  
  30.     window.open('http://www.baidu.com/','','width=790,height=590');  
  31.     window.opener=null;  
  32.     window.close();  
  33. }  
  34. </SCRIPT>  
  35.   
  36. </head>  
  37. <body>  
  38.     <button onclick="javascript:ow('http://www.baidu.com')">打开新窗口全屏</button><br>  
  39.     <button onclick="WinOpen()">正常打开一个弹出窗口</button><br>  
  40.     <button onclick="openModelessDialog()">网页对话框[打开多个]</button><br>  
  41.     <button onclick="openModalDialog()">网页对话框[打开一个]</button><br>  
  42.     <button onclick="openChild()">子窗口打开,关闭父窗口</button><br>  
  43. </body>  
  44. </html> 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值