`

showModalDialog参数详解|使用方法

阅读更多
  1. 基本介绍:      
  2.    showModalDialog()    (IE    4+    支持)      
  3.    showModelessDialog()    (IE    5+    支持)      
  4.    window.showModalDialog()方法用来创建一个显示HTML内容的模态对话框。      
  5.    window.showModelessDialog()方法用来创建一个显示HTML内容的非模态对话框。      
  6.        
  7.    使用方法:      
  8.    vReturnValue    =    window.showModalDialog(sURL    [,    vArguments]    [,sFeatures])      
  9.    vReturnValue    =    window.showModelessDialog(sURL    [,    vArguments]    [,sFeatures])      
  10.        
  11.    参数说明:      
  12.    sURL--      
  13.    必选参数,类型:字符串。用来指定对话框要显示的文档的URL。      
  14.    vArguments--      
  15.    可选参数,类型:变体。用来向对话框传递参数。传递的参数类型不限,包括数组等。对话框通过window.dialogArguments来取得传递进来的参数。      
  16.    sFeatures--      
  17.    可选参数,类型:字符串。用来描述对话框的外观等信息,可以使用以下的一个或几个,用分号“;”隔开。      
  18.    1.dialogHeight    :对话框高度,不小于100px,IE4中dialogHeight    和    dialogWidth    默认的单位是em,而IE5中是px,为方便其见,在定义modal方式的对话框时,用px做单位。      
  19.    2.dialogWidth:    对话框宽度。      
  20.    3.dialogLeft:    离屏幕左的距离。      
  21.    4.dialogTop:    离屏幕上的距离。      
  22.    5.center:    {yes    |    no    |    1    |    0    }:窗口是否居中,默认yes,但仍可以指定高度和宽度。      
  23.    6.help:    {yes    |    no    |    1    |    0    }:是否显示帮助按钮,默认yes。      
  24.    7.resizable:    {yes    |    no    |    1    |    0    }    [IE5+]:是否可被改变大小。默认no。      
  25.    8.status:    {yes    |    no    |    1    |    0    }    [IE5+]:是否显示状态栏。默认为yes[    Modeless]或no[Modal]。      
  26.    9.scroll:{    yes    |    no    |    1    |    0    |    on    |    off    }:指明对话框是否显示滚动条。默认为yes。      
  27.    下面几个属性是用在HTA中的,在一般的网页中一般不使用。      
  28.    10.dialogHide:{    yes    |    no    |    1    |    0    |    on    |    off    }:在打印或者打印预览时对话框是否隐藏。默认为no。      
  29.    11.edge:{    sunken    |    raised    }:指明对话框的边框样式。默认为raised。      
  30.    12.unadorned:{    yes    |    no    |    1    |    0    |    on    |    off    }:默认为no。      
  31.        
  32.    参数传递:      
  33.    1.要想对话框传递参数,是通过vArguments来进行传递的。类型不限制,对于字符串类型,最大为4096个字符。也可以传递对象,例如:      
  34.    -------------------------------      
  35.    parent.htm      
  36.    <script>      
  37.    var    obj    =    new    Object();      
  38.    obj.name="51js";      
  39.    window.showModalDialog("modal.htm",obj,"dialogWidth=200px;dialogHeight=100px");      
  40.    </script>      
  41.   
  42.   
  43.    modal.htm      
  44.    <script>      
  45.    var    obj    =    window.dialogArguments      
  46.    alert("您传递的参数为:"    +    obj.name)      
  47.    </script>      
  48.    -------------------------------      
  49.    2.可以通过window.returnValue向打开对话框的窗口返回信息,当然也可以是对象。例如:      
  50.    ------------------------------      
  51.    parent.htm      
  52.    <script>      
  53.        str    =window.showModalDialog("modal.htm",,"dialogWidth=200px;dialogHeight=100px");      
  54.        alert(str);      
  55.    </script>      
  56.   
  57.   
  58.    modal.htm      
  59.    <script>      
  60.        window.returnValue="http://www.51js.com";      
  61.    </script>    
  62.   
  63. 用window.showModalDialog 或者window.showModelessDialog打开一个模式窗口后,和父窗口的一些交互问题。   
  64. 要进行交互操作的前提,在调用showModalDialog或者showModelessDialog方法的时候,第二个参数传window,如:   
  65.   
  66.   
  67. window.showModelessDialog('filename.htm',window,'dialogWidth=200px;dialogHeight=250px;')    
  68.   
  69.   
  70.   
  71. 接下来,就是取得父窗口的一些数据和方法,这是经常会用的,父窗口取子窗口的参数一般通过returnValue就可以搞定了~   
  72.   
  73.   
  74. //取得父窗口的JS变量 var   
  75. window.dialogArguments.var;   
  76. //获得父窗口的对象和属性   
  77. window.dialogArguments.form1.name.value ;   
  78. //调用父窗口的方法 fun   
  79. window.dialogArguments.fun() ;    
  80.   
  81.   
  82.   
  83.   
  84. 但是有个问题,在子窗口中的事件响应无法调用父窗口的方法,   
  85.   
  86.   
  87. <button onClick='window.dialogArguments.fun()'>调父窗口方法</button>    
  88.   
  89.   
  90.   
  91. 不知为何,执行上面的方法的时候,窗口会停止响应   
  92. http://jackeysion.iteye.com/blog/464031
分享到:
评论

相关推荐

    showModalDialog参数详解

    showModalDialog参数详解 基本介绍: showModalDialog() (IE 4+ 支持) showModelessDialog() (IE 5+ 支持) window.showModalDialog()方法用来创建一个显示HTML内容的模态对话框。 window.showModelessDialog()...

    showModalDialog参数使用详解

    本篇文章将深入探讨`showModalDialog`的参数使用,以及如何在子父窗口之间传递数据。 `showModalDialog`函数的基本语法如下: ```javascript window.showModalDialog(url, [startNode], [features]); ``` - `url`...

    showModalDialog和showModelessDialog使用心得

    ### showModalDialog和showModelessDialog使用心得:深入解析与实践 在Web开发中,`showModalDialog` 和 `showModelessDialog` 是两种用于创建弹出窗口的方法,它们各自具有独特的特性和应用场景。本文将详细解析这...

    js showModalDialog参数的使用详解

    JavaScript中的`showModalDialog`函数是一个专用于创建模态对话框的方法,主要在IE浏览器上得到广泛支持(从IE4开始)。模态对话框意味着用户必须先关闭对话框才能与父窗口进行交互,这在需要用户输入信息或确认操作...

    showModalDialog详解

    在此,我们将深入探讨`showModalDialog`的用法、参数以及它在现代Web开发中的地位。 `showModalDialog`的基本语法如下: ```javascript var returnVal = window.showModalDialog(url, startingValue, features); `...

    showModalDialog及dialogArguments使用

    #### sFeatures 参数详解 `sFeatures` 参数可以包含以下属性,用分号分隔: 1. **dialogHeight**: 对话框的高度,单位为像素(px)。 2. **dialogWidth**: 对话框的宽度,单位为像素(px)。 3. **dialogLeft**: ...

    showModalDialog模态对话框的使用详解以及浏览器兼容

    `showModalDialog`是JavaScript `window`对象的一个方法,它用于打开一个新的模态对话框,与`window.open`相似但有所不同。主要的区别在于,当使用`showModalDialog`打开一个子窗口时,父窗口会失去焦点,用户无法与...

    Window.ShowModalDialog使用手册

    ### 使用Window.ShowModalDialog与Window.ShowModelessDialog在JavaScript中的详解 #### 一、引言 在Web开发中,为了实现更加丰富的用户交互体验,开发者经常需要创建模态或非模态对话框来显示特定的信息或者请求...

    window.showModalDialog的基本用法

    #### 特征参数详解 - **dialogHeight**: 对话框的高度,默认单位为像素(px),对于模态对话框也可以使用 em 单位。 - **dialogWidth**: 对话框的宽度,默认单位为像素(px)。 - **dialogLeft**: 对话框在屏幕上的...

    ShowModalDialog与window.open的区别

    使用方法** ```javascript var returnValue = window.showModalDialog(sURL, vArguments, sFeatures); ``` **3. 参数说明** - **sURL**: 必需参数,指定要显示的文档的URL。 - **vArguments**: 可选参数,传递给...

    showModalDialog用法

    #### 二、参数详解 1. **URL**:这是必须指定的参数,表示要打开的新窗口的地址或HTML文档的路径。 2. **Arguments**:这是一个可选参数,可以向新窗口传递数据。在新窗口中,可以通过`window.dialogArguments`...

    JS中showModalDialog 详细使用.txt

    ### JS中的`showModalDialog`与`showModelessDialog`详解 #### 一、概述 在JavaScript中,`showModalDialog` 和 `showModelessDialog` 是两种用于创建弹出窗口的方法,主要用于显示HTML内容。这两种方法都是...

    window.showModalDialog(javascript)

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

    JS 弹出对话框window.showModalDialog()

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

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

    #### 四、参数详解 1. **sURL** - 描述:指定对话框中要加载的HTML文档的URL。 - 示例:`"http://example.com/dialog.html"`。 2. **vArguments** - 描述:向对话框传递的数据对象。 - 示例:`{ name: "John...

    showmodaldialog

    #### 三、参数详解 - **`sFeatures`**:这是一个字符串,包含了一个或多个描述对话框特性的选项,每个选项之间用分号(`;`)分隔。具体选项包括但不限于: - **`dialogHeight`**:设置对话框的高度,最小值为100...

    JavaScript中window.showModalDialog()用法详解

    使用showModalDialog()方法,开发者可以控制子窗口的行为,例如窗口的大小、位置、是否可调整大小、是否显示状态栏以及是否显示滚动条等。 该方法的基本语法是: ```javascript vReturnValue = window....

Global site tag (gtag.js) - Google Analytics