编程语言
首页 > 编程语言> > JavaScript Window 打开新窗口的几种方式 window.location.href、window.open、window.showModalDialog

JavaScript Window 打开新窗口的几种方式 window.location.href、window.open、window.showModalDialog

作者:互联网

1、方式1: window.location.href

  1.   window.location.href="https://www.cnblogs.com/guorongtao/";     //在当前窗口中打开窗口
  2.    
  3.   类似于HTML:
  4.    
  5.   <a href="https://www.cnblogs.com/guorongtao/" title="测试1">Welcome Test1</a>

 2、方式2: window.open

  1.   window.open("https://www.cnblogs.com/guorongtao/");      //在另外新建窗口中打开窗口
  2.    
  3.   类似于HTEL:
  4.    
  5.   <a href="https://www.cnblogs.com/guorongtao/" title="测试2" target="_blank">Welcome Test2</a>

指定参数:

  1.   <script >
  2.    
  3.     var NewUrl = 'www.baidu.com' ;      
  4.    
  5.     window.open(NewUrl,'newindow','height=600,width=900,top=0,left=0,toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,status=no');
  6.    
  7.   </script > 

参数说明:

3、方式3 window.showModalDialog (部分浏览器不支持)

  1. var URL='https://www.cnblogs.com/guorongtao'
  2. window.showModalDialog(URL,'','DialogLeft:170px;DialogTop:130px;DialogWidth:930px;DialogHeight:753px;status:no;help:no');

原型:

 

vReturnValue = window.showModelessDialog(sURL [, vArguments] [, sFeatures]) 

参数说明:

另外几个属性用在HTA中的,在一般的网页中一般不使用。

传入参数:

    要想对话框传递参数,是通过vArguments来进行传递的。类型不限制,对于字符串类型,最大为4096个字符。也可以传递对象,例如:

  1.   //test1.htm
  2.   <script>
  3.   var mxh1 = new Array("mxh","net_lover","孟子E章")
  4.   var mxh2 = window.open("about:blank","window_mxh")
  5.   // 向对话框传递数组
  6.   window.showModalDialog("test2.htm",mxh1)
  7.   // 向对话框传递window对象
  8.   window.showModalDialog("test3.htm",mxh2)
  9.   </script>
  10.    
  11.   //test2.htm
  12.   <script>
  13.   var a = window.dialogArguments
  14.   alert("您传递的参数为:" + a)
  15.   </script>
  16.    
  17.   //test3.htm
  18.   <script>
  19.   var a = window.dialogArguments
  20.   alert("您传递的参数为window对象,名称:" + a.name)
  21.   </script>

可以通过window.returnValue向打开对话框的窗口返回信息,当然也可以是对象。例如:

  1.   //test4.htm
  2.   <script>
  3.   var a = window.showModalDialog("test5.htm")
  4.   for(i=0;i<a.length;i++) alert(a[i])
  5.   </script>
  6.    
  7.   //test5.htm
  8.   <script>
  9.   function sendTo()
  10.   {
  11.   var a=new Array("a","b")
  12.   window.returnValue = a
  13.   window.close()
  14.   }
  15.   </script>
  16.    
  17.   <form>
  18.   <input value="返回" type=button onclick="sendTo()">
  19.   </form>

4、Window 其他参考 

   

标签:showModalDialog,窗口,对话框,htm,no,window,新窗口,yes
来源: https://www.cnblogs.com/javalinux/p/16153955.html