`
jveqi
  • 浏览: 321677 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

window.showModalDialog和window.dialogArguments

    博客分类:
  • js
 
阅读更多

第一次使用。很爽的感觉。

 

弹出子窗口
window.showModalDialog( url, window );

然后在弹出的子窗口中:
window.dialogArguments 即为父窗口window对象的引用。想搞什么都可以了。

分享到:
评论

相关推荐

    Window.ShowModalDialog使用手册

    让我们深入探讨一下`Window.showModalDialog()`的详细用法和相关知识点。 首先,`showModalDialog()`方法的基本语法如下: ```javascript window.showModalDialog(url, [dialogArguments], [features]); ``` 1. *...

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

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

    window.showModalDialog方法的使用

    总结来说,`window.showModalDialog`虽然提供了一种创建模态对话框的方式,但鉴于其局限性和现代浏览器的不兼容性,开发者应该考虑使用更现代和兼容的解决方案来实现相同的功能。了解并掌握这些替代方法,将有助于...

    window.showModalDialog(javascript)

    这些参数可以通过对话框内部的`window.dialogArguments`属性访问。 - `features`(可选):字符串类型,用于定义对话框的外观和行为,如大小、位置、样式等。参数之间用分号";"分隔。 ### 特性参数 `features`参数...

    window.showModalDialog的基本用法

    `window.showModalDialog` 和 `window.showModelessDialog` 提供了灵活的方式来创建弹出对话框,适用于需要与用户进行交互的应用场景。需要注意的是,这两个函数仅在 IE 浏览器中可用,并且由于现代浏览器的限制,...

    window.showModalDialog的一个domo模型

    这通常是通过`window.dialogArguments`属性实现的,它指向`showModalDialog`的第一个参数(即父窗口的引用)。 在`TestWindowDialog`压缩包中,我们可能有以下文件结构: - `parent.jsp`: 父窗口页面,包含`...

    ShowModalDialog与window.open的区别

    JavaScript 提供了两种常用的方法来创建这类窗口:`ShowModalDialog` 和 `window.open`。这两种方法各有特点,在不同的场景下具有不同的适用性。 #### 二、ShowModalDialog详解 **1. 功能介绍** `ShowModalDialog...

    window.showModalDialog('d.html',fault,'');

    window.showModalDialog(url, [dialogArguments], [options]); ``` - `url`: 必需,表示对话框要显示的资源的URL。 - `dialogArguments`: 可选,对话框接收的变量,可以是任何JavaScript值,它会被传递给对话框的`...

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

    var obj = window.dialogArguments; alert('传递的数据为' + obj.name); ``` ##### 示例 2:从对话框返回数据 ```html <!-- parent.htm --> var str = window.showModalDialog('modal.htm', '', 'dialogWidth=200...

    JavaScript中window.showModalDialog()用法详解

    此外,对话框可以通过window.dialogArguments接收父窗口传递来的参数,并且可以通过window.returnValue向父窗口返回信息。这种参数传递的方式非常灵活,既支持基本类型也支持复杂类型的数据结构。 在使用window....

    showModalDialog open弹出子窗口操作parent、opener父窗口及跨域处理

    1> window.showModalDialog()采用JS原理实现,同时父窗口不可操作,window.open()采用新创建一个窗口,同时父窗口可操作; 2> 父窗口与子窗口传递值的方式也有所不同,在子窗口中操作父窗口也语法也不同,分别为var...

    浅谈JavaScript窗体Window.ShowModalDialog使用

    总的来说,`window.showModalDialog()`和`window.showModelessDialog()`是JavaScript中较老的弹出对话框技术,它们提供了对对话框外观和行为的控制,但在现代Web开发中,由于浏览器兼容性和可访问性问题,已被其他...

    js的window.showModalDialog及window.open用法实例分析

    JavaScript中的`window.showModalDialog`和`window.open`都是用于打开新窗口的方法,但它们有着不同的特性和用途。 首先,`window.open`方法是JavaScript中最常见的打开新窗口的方式,它适用于所有的主流浏览器,如...

    showModalDialog:window.showModalDialog polyfill 使用元素

    ShowModalDialog 填充这是一个window.... 在使用showModalDialog函数之前,只需包含以下 HTML 代码: [removed][removed]支持同时传递window.dialogArguments和window.returnValue ,前提是对话文档与宿主文档位于同一

    js模式化窗口问题![window.dialogArguments]

    在Firefox中,当使用`showModalDialog()`并且页面发生跳转时,`window.dialogArguments`对象会丢失,而在IE中则不会。这是因为Firefox的实现与IE有所不同。有两种解决方案: a. 将弹出的页面放入`frameset`或`...

    ShowModalDialog父窗体向子窗体传值

    var param1 = window.dialogArguments.param1; var param2 = window.dialogArguments.param2; ``` 同时,`showModalDialog`和`showModelessDialog`的返回值(`returnValue`)可以用于从子窗口向父窗口传递信息。...

    showModalDialog刷新窗口的例子

    - `windowObject`:可选参数,可以是任何对象,该对象会被传递到新窗口作为全局变量`window.dialogArguments`。 - `features`:可选参数,包含对话框的各种设置,如宽度、高度、位置等,通常是以分号隔开的键值对。 ...

    window.dialogArguments 使用说明

    - 示例代码中,`window.dialogArguments.document.getElementById("text1").value="你好世界!";` 这一行代码表明,对话框可以修改父窗口中ID为"text1"的输入元素的值。 - 注意,由于`dialogArguments`提供了对父...

Global site tag (gtag.js) - Google Analytics