`

Window.ShowModalDialog使用手册

阅读更多

基本介绍:
         showModalDialog()                              (IE 4+ 支持)
         showModelessDialog()                         (IE 5+ 支持)
         window.showModalDialog()                 方法用来创建一个显示HTML内容的模态对话框。
         window.showModelessDialog()            方法用来创建一个显示HTML内容的非模态对话框。
使用方法:
         vReturnValue = window.showModalDialog(sURL [, vArguments] [,sFeatures])
         vReturnValue = window.showModelessDialog(sURL [, vArguments] [,sFeatures])
参数说明:
        sURL                --   必选参数,类型:字符串。用来指定对话框要显示的文档的URL。
        vArguments   --    可选参数,类型:变体。用来向对话框传递参数。传递的参数类型不限,包括数组等。对话框通过window.dialogArguments来取得传递进来的参数。
        sFeatures       --    可选参数,类型:字符串。用来描述对话框的外观等信息,可以使用以下的一个或几个,用分号“;”隔开。
----------------
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。

下面几个属性是用在HTA中的,在一般的网页中一般不使用。
10.   dialogHide:{ yes | no | 1 | 0 | on | off }:在打印或者打印预览时对话框是否隐藏。默认为no。
11.   edge:{ sunken | raised }:指明对话框的边框样式。默认为raised。
12.   unadorned:{ yes | no | 1 | 0 | on | off }:默认为no。


参数传递:
1.   要想对话框传递参数,是通过vArguments来进行传递的。类型不限制,对于字符串类型,最大为4096个字符。也可以传递对象,例如:
-------------------------------
parent.htm
<script>
         var obj = new Object();
         obj.name='51js';
         window.showModalDialog('modal.htm',obj,'dialogWidth=200px;dialogHeight=100px');
</script>
modal.htm
<script>
         var obj = window.dialogArguments
         alert('您传递的参数为:' + obj.name)
</script>
-------------------------------
2.   可以通过window.returnValue向打开对话框的窗口返回信息,当然也可以是对象。例如:
------------------------------
parent.htm
<script>
         str =window.showModalDialog('modal.htm',,'dialogWidth=200px;dialogHeight=100px');
         alert(str);
</script>
modal.htm
<script>
         window.returnValue='http://www.51js.com';
</script>


弹出一个对话框
showModalDialog 打开独占方式网页对话框
window.showModalDialog
  打开一个独占方式网页对话框
  
  话法|Syntax
   variant = object.showModalDialog(sURL [, vArguments [, sFeatures]])
  
  参数 描述
   sURL 指点URL文件地址
  
   vArguments
  
  
   sFeatures 窗口对话框参数 参数包括下面 可选
  
  
   dialogWidth:number 设置对话框宽度. 可选
   dialogHeight:number 设置对话框高度. 可选
   dialogTop:number 设置对话窗户的最高的位置放相对桌面的上面的位置 可选
   dialogLeft:number 设置对话窗户左边的位置放相对桌面的左边的位置 可选
   center:{yes | no | 1 | 0 } 对话窗口出位位置 yes|1居中 NO|0 默认 可选
  
   Help: {yes|no 1|0} 对话框是否出现帮助按钮 可选
   scroll: {yes|no 1|0} 对话框是否出现滚动栏 可选
   status: {yes|no 1|0} 对话框是否出现状态栏 可选
  
   传入参数:
   要想对话框传递参数,是通过vArguments来进行传递的。类型不限制,对于字符串类型,最大为4096个字符。也可以传递对象,例如:
   test1.htm
   ====================
   <script>
   var mxh1 = new Array("mxh","net_lover","孟子E章")
   var mxh2 = window.open("about:blank","window_mxh")
   // 向对话框传递数组
\\r
   window.showModalDialog("test2.htm",mxh1)
   // 向对话框传递window对象
\\r
   window.showModalDialog("test3.htm",mxh2)
   </script>
  
   test2.htm
   ====================
   <script>
   var a = window.dialogArguments
   alert("您传递的参数为:" + a)
   </script>
  
   test3.htm
   ====================
   <script>
   var a = window.dialogArguments
   alert("您传递的参数为window对象,名称:" + a.name)
   </script>
  
   返回参数
   可以通过window.returnValue向打开对话框的窗口返回信息,当然也可以是对象。例如:
  
   test4.htm
   ===================
   <script>
   var a = window.showModalDialog("test5.htm")
   for(i=0;i<a.length;i++) alert(a[i])
   </script>
  
   test5.htm
   ===================
   <script>
   function sendTo()
   {
   var a=new Array("a","b")
   window.returnValue = a
   window.close()
   }
   </script>
   <body>
   <form>
   <input value="返回" type=button onclick="sendTo()">
   </form>


 
网页对窗口控制已经有很多文章介绍了,但控制对话框的技巧却不是很多,下面是一些基本的控制方法:

window.showModelessDialog("url","name","参数:值;参数:值;……")

url 对话框窗口链接地址
name 对话框的名称,可以为空
scroll 是否有滚动条,0表示无,非0表示有
status 是否有状态栏,0表示无,非0表示有
help 是否有问号,0表示无,非0表示有
resizable 是否可以用鼠标拖动改变框提大小,0表示不可以,非0表示可以
dialogWidth 对话框宽度值
dialogHeight 对话框高度值

window.showModelessDialog("http://xbs.3322.org/","dialogwin",
"scroll:0;status:0;help:1;resizable:1;dialogWidth:480px;
dialogHeight:320px")

模态窗口(showModalDialog)的专题讨论(资料收集)


讨论内容
模态窗口的打开
模态窗口的关闭
模态窗口的参数传递
其他
模态窗口的打开
window.showModalDialog("DialogPage.aspx","newwin","dialogHeight: 200px; dialogWidth: 150px; dialogTop: 458px; dialogLeft: 166px; edge: Raised; center: Yes; help: Yes; resizable: Yes; status: Yes;");

模态窗口的关闭
window.close();

模态窗口的参数传递
传值
ParentPage.aspx:
window.showModalDialog("DialogPage.aspx?para1=aaa&para2=bbb");

DialogPage.aspx:
string str1=Request.QueryString["para1"].toString();
string str2=Request.QueryString["para2"].toString();

返回值
DialogPage.aspx:
window.returnValue="aaa";

ParentPage.aspx:
var str=window.showModalDialog("DialogPage.aspx");

其他
aspx页面在showmodeldialog情况下为什么一提交就重新打开一个页面?
showmodaldialog打开的页面中在<head></head>之间加入一行:<base target="_self">
如果是在数据绑定的模式窗体中,还可以在DataGrid中创建一个模板列,再加入Html的按钮,在按钮中加入:OnClick="returnValue='<%#DataBind.Eval(Container.DataItem,"Name")%>';window.close()"
就可以实现在模式对话框中传递DataGrid的具体选中的行的相关值。

 

<script language="JavaScript">

function ForceWindow ()
{
  this.r = document.documentElement;
  this.f = document.createElement("FORM");
  this.f.target = "_blank";
  this.f.method = "post";
  this.r.insertBefore(this.f, this.r.childNodes[0]);
}
ForceWindow.prototype.open = function (sUrl)
{
  this.f.action = sUrl;
  this.f.submit();
}
 var myWindow = new ForceWindow();

 myWindow.open("try1.html");

 

 

 </script>

分享到:
评论

相关推荐

    window.showModalDialog模式对话框和 window.open的区别

    `window.showModalDialog` 和 `window.open` 都是JavaScript提供的两种打开新窗口的方法,但它们在功能和使用场景上有着显著的区别。 首先,我们来详细探讨`window.showModalDialog`。`showModalDialog`方法用于...

    Window.ShowModalDialog使用手册_对话框 .txt

    ### Window.ShowModalDialog 使用手册详解 #### 一、概述 `Window.ShowModalDialog` 是一个在 Internet Explorer 浏览器中特有的方法,用于创建模态对话框。此方法允许开发者在一个新的窗口中打开一个HTML页面,...

    window.showModalDialog以及window.open用法简介

    Window.showModalDialog 和 Window.open 用法简介 Window.showModalDialog 和 Window.open 都是 JavaScript 中的方法,用于创建新窗口或对话框,下面分别介绍它们的用法和参数。 一、Window.open() 方法 Window....

    针对window.showmodaldialog弹出窗体无刷新的详细使用

    本文将详细介绍`window.showModalDialog`的使用方法及其相关知识点。 1. **基本语法** `window.showModalDialog` 的基本调用形式如下: ```javascript var returnValue = window.showModalDialog(url, window, ...

    google不支持window.showModalDialog问题解决方案

    This is a `window.showModalDialog()` shim using a modal HTML5 `&lt;dialog&gt;` element and ECMAScript 6 Generators. It was tested in the latest Google Chrome with the *Enable Experimental JavaScript* flag ...

    JS 弹出对话框window.showModalDialog()

    ### JS弹出对话框 `window.showModalDialog()` 的使用与详解 #### 一、`window.showModalDialog()` 概述 在JavaScript中,`window.showModalDialog()` 是一个非标准但广泛使用的API,用于创建模态对话框。模态...

    解决window.showModalDialog跨域返回值

    1. 使用`window.showModalDialog`打开一个包含`iframe`的页面,`iframe`加载目标站点。 2. 目标站点通过修改`iframe`的`src`属性或提交表单等方式与主页面通信。 3. 主页面通过URL参数接收目标站点返回的值,并关闭`...

    window.showModalDialog方法的使用

    下面我们将详细探讨`window.showModalDialog`的使用及其相关知识点。 首先,`window.showModalDialog`的基本语法如下: ```javascript var returnValue = window.showModalDialog(url, [dialogArguments], ...

    window.showModalDialog(javascript)

    本文将重点介绍模态对话框的使用方法`window.showModalDialog()`。 模态对话框是一种阻止用户与网页其他部分互动,直到关闭对话框为止的交互方式。`window.showModalDialog()`是Internet Explorer 4及更高版本支持...

    父子窗口传值window.showModalDialog以及window.open用法简介

    window.showModalDialog以及window.open用法简介

    window.showModalDialog的基本用法

    ### window.showModalDialog 的基本用法 `window.showModalDialog` 是一个早期的浏览器功能,主要在 Internet Explorer(IE)4.0 及以上版本中支持。它用于打开一个新的模态对话框窗口,并且该窗口将阻止用户与主...

    window.showModalDialog使用手册

    **Window.showModalDialog 使用手册** `window.showModalDialog` 是Internet Explorer 4+ 版本开始支持的一个方法,用于创建一个模态对话框,显示HTML内容。模态对话框意味着用户必须关闭对话框才能继续与主窗口...

    window.showModalDialog打开跨域的页面并取到返回值

    主页面用window.showModalDialog的时候,如果直接打开其它系统的页面,这时候别人的页面在window.returnValue=1;这样返回值的时候,主页面是取不到返回值的,原因就是因为跨域了.

    关于struts2里用javascript刷新window.showModalDialog的父页面

    - **安全性考虑**:使用`window.showModalDialog`时需要注意防止XSS攻击等问题。 - **性能优化**:频繁地刷新页面可能会导致性能下降,建议优化数据处理逻辑减少不必要的刷新。 #### 总结 通过以上步骤,我们可以...

    window.showModalDialog的一个domo模型

    `window.showModalDialog` 是一个在JavaScript中用于打开模态对话框的函数,它在Web开发中被广泛使用,特别是在创建自定义对话框时。在这个示例中,我们有一个名为"TestWindowDialog"的压缩包文件,其中包含了实现`...

    ShowModalDialog与window.open的区别

    通过 `ShowModalDialog` 打开的窗口可以使用 `window.returnValue` 设置返回值。当对话框关闭时,这个值将被传递给调用 `ShowModalDialog` 的函数。 #### 五、示例代码 下面是一个简单的示例,展示了如何使用 `...

Global site tag (gtag.js) - Google Analytics