window.showModalDialog function 详解

这里主要是记录一下我对有关showModalDialog这个方法的一些了解,包括一些网上的资料和自己的测试结果。

基本介绍: 被打开后就会始终保持输入焦点。除非对话框被关闭,否则用户无法切换到主窗口。类似alert的运行效果。

在我测试的环境中,支持这一方法的有IE8,FF3,Chrome6.0不支持。

 

window.showModalDialog(sURL [, vArguments] [,sFeatures])

参数说明:
        sURL                --   必选参数,类型:字符串。用来指定对话框要显示的文档的URL。
        vArguments   --    可选参数,类型:变体。用来向对话框传递参数。传递的参数类型不限,包括数组等。对话框通过window.dialogArguments来取得传递进来的参数。
        sFeatures       --    可选参数,类型:字符串。用来描述对话框的外观等信息,可以使用以下的一个或几个,用分号“;”隔开。

------------vArguments----------------------

1.   dialogHeight:   对话框高度,不小于100px
2.   dialogWidth:   对话框宽度。
3.   dialogLeft:    离屏幕左的距离。
4.   dialogTop:    离屏幕上的距离。
5.   center:         { yes | no | 1 | 0 } :             是否居中,默认yes,但仍可以指定高度和宽度。
6.   help:            {yes | no | 1 | 0 }:               是否显示帮助按钮,默认yes。
7.   resizable:      {yes | no | 1 | 0 } [IE5+]:    是否可被改变大小。默认no。
8.   status:         {yes | no | 1 | 0 } [IE5+]:     是否显示状态栏。默认为yes[ Modeless]或no[Modal]。
9.   scroll:           { yes | no | 1 | 0 | on | off }:是否显示滚动条。默认为yes。

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

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


主窗口代码:

 

 
  
1 <!DOCTYPE html public "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2  <html xmlns="http://www.w3.org/1999/xhtml">
3  <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 <title>Untitled</title>
6  <script type="text/javascript">
7  <!--
8 var testValue = "it's a test message!";
9 function showbox(){
10 var obj = new Object();
11 obj.testValue = testValue;
12 var r = window.showModalDialog('showModalDialog_dialog.html',obj,'dialogHeight:100px;dialogWidth:100px;resizable:true');
13 if(!r)r = window.ReturnValue;
14 alert(r)
15 }
16  //-->
17  </script>
18  </head>
19  <body>
20
21  <a href="javascript:showbox()" title="">Show Box</a>
22
23  </body>
24  </html>


 

子窗口代码:

 
  
1 <! DOCTYPE html public "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >
2   < html xmlns ="http://www.w3.org/1999/xhtml" >
3   < head >
4 < meta http-equiv ="Content-Type" content ="text/html; charset=utf-8" />
5 < title > Untitled </ title >
6
7   </ head >
8   < body >
9 < script type ="text/javascript" >
10 <!--
11 var obj = window.dialogArguments
12 alert( " Passed value is: " + obj.testValue)
13 window.returnValue = " This is the return value " ;
14 // -->
15 </ script >
16
17
18 </ body >
19 </ html >

 

 

 

转载于:https://www.cnblogs.com/frazer/archive/2010/05/26/1744376.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值