简单的说,就是一个在弹出窗口之后可以做其它的事,即window.open

另一个在弹出窗口之后不能做其它的事,只能是关闭了当前的窗口之后才能做其它的事,即window.showModalDialog

那么两者在使用上有什么不同呢?他们分别是如何和父窗口进行交互的呢?

先来看window.showModalDialog的例子:

我这里现在有一个父窗体parent.jsp,它里面有一个方法

function openChild(){
                var temp = window.showModalDialog("child.jsp",window,'dialogWidth=400px;dialogHeight=200px');
                document.getElementById("fromChildName").value = temp.childName;
                document.getElementById("fromChildAge").value = temp.childAge;
    }

这里面,我们第二个参数传递为window,也就是把当前页面做为参数传递到子窗口中,temp 为子窗口的返回值

再来看子窗口child.jsp页面:

function fromParent(){
               var parName = window.dialogArguments.document.getElementById("parName").value;  //得到父窗口中的姓名
               var parAge = window.dialogArguments.document.getElementById("parAge").value
               document.getElementById("fromParName").value =  parName;
              document.getElementById("fromParAge").value = parAge;
    }

从上面我们就可以看出,在父窗口中我们传递了window这个参数,然后在子窗口中,我们用window.dialogArguments直接到取了父窗口中id = "parName"的属性值

再来说这个返回值temp是怎么回事?

function toParent(){
               var obj = new Object();
               obj.childName = document.getElementById("childName").value;
               obj.childAge = document.getElementById("childAge").value;
               window.returnValue = obj;
               window.close();
   }

我们用window.returnValue的方式直接把一个对象返回到父窗口,然后父窗口根据对象中的属性直接取出其中的值就OK了

那么,我们可不可以直接调用父窗口中的方法呢?

答案是肯定的:

function fromParentFunction(){
               window.dialogArguments.parFunction();
      }

我们用window.dialogArguments + 父窗口的方法名,就直接可以调用父窗口的方法

上面是window.showModalDialog如何来进行子父窗口间的传递值,那么,接下来看下window.open是如何进行子父窗口间的传值:

在父窗口parent.jsp页面中:

function openChild(){
               var obj = window;
               obj.name = "张三";
               obj.age = "18";
               window.open('child.jsp','我是弹出子窗口','height=200,width=400,top=200,left=400,toolbar=no,menubar=no,

scrollbars=no, resizable=no,location=no, status=no');
        }

我们定义变量obj = window,再通过属性赋值把对象传递过去,接下来看下子窗口:

function fromParent(){
              alert("得到父窗口的中姓名值:"+ this.opener.name);
              alert("得到父窗口中的年龄值:"+ this.opener.age);
      }

利用this.opener.属性名  就可以得到父窗口中的变量值

那么如何把值子窗口中的值再返回到父窗口中呢?

function toParent(){
                //把子窗口中的值传递给父窗口,document.getElementById("name").value得到子窗口的值
             this.opener.document.getElementById("parName").value = document.getElementById("childName").value;
             this.opener.document.getElementById("parrAge").value = document.getElementById("childAge").value;
            window.close();
     }

这里的parName是父窗口中的id = 'parName' ,也就是说,可以在子窗口中利用 this.opener. + 父窗口元素 赋值给父窗口

window.showModalDialog 与window.open传递参数的不同?的更多相关文章

  1. window.showModalDialog与window.open()使用

    window.showModalDialog 有些浏览器不兼容,尝试用window.open() 封装替代,需要打开子窗口后向父窗口传递数据. <html> <script src= ...

  2. window.open、window.showModalDialog和window.showModelessDialog 的区别[转]

    一.前言 要打开一个可以载入页面的子窗口有三种方法,分别是window.open.window.showModalDialog和window.showModelessDialog. open方法就是打 ...

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

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

  4. window.showModalDialog的基本用法

    window.showModalDialog的基本用法 showModalDialog() (IE 4+ 支持) showModelessDialog() (IE 5+ 支持) window.show ...

  5. window.showModalDialog

    //新版本谷歌没有window.showModalDialog,创建一个window.openif(window.showModalDialog == undefined){  window.show ...

  6. window.showModalDialog()之返回值

    window.showModalDialog的基本用法 showModalDialog() (IE 4+ 支持) showModelessDialog() (IE 5+ 支持) window.show ...

  7. window.open || window.showModalDialog || window.showModelessDialog

    http://dwcmayday201204063551.iteye.com/blog/1621751 http://www.cnblogs.com/zhangyi85/archive/2009/09 ...

  8. javascript window.showModalDialog不兼容goole解决方案

    window.showModalDialog不兼容goole解决方案 一.弹框方案: 1.window.open; 2.window.showModalDialog; 3.div制作窗口:(本节忽略) ...

  9. window.parent与window.opener、window.showModalDialog的区别 opener和showModalDialog刷新父页面的方法

    项目中使用案例: 父窗体 <s:form namespace="/forexagent" id="listSearchForm" name="t ...

随机推荐

  1. 迅影QQ视频查看v2.0 源码

    骗了1200多位朋友,实在惭愧,现在公开我自己的源码实现.本人新人,代码很烂,请凑合看吧O(∩_∩)O~ Form1.cs using System; using System.Text.Regula ...

  2. static_cast .xml

    pre{ line-height:1; color:#1e1e1e; background-color:#d2d2d2; font-size:16px;}.sysFunc{color:#627cf6; ...

  3. 运算符重载 C++ 编程思想

    class Integer{ int i; public: Integer(int ii) : i(ii) {} const Integer operator+(const Integer& ...

  4. Intent传输数据的补充

    发现用intent的putExtra()或者putExtras()传输的都是基本数据类型. 如果要传输自定义数据类型,就要用到其他方法,老罗介绍的大概有3种: 1.  静态变量 2.  全局变量 3. ...

  5. 数往知来 AJAX Ajax增删改查<十九>

    =================================================客户端================================================ ...

  6. 时间日期Date类型

    <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8& ...

  7. effective c++:private继承

    如果class间使用private继承关系,编译器就不会自动的将派生类转换为基类,而且private继承而来的成员都变为private属性. private继承意味着根据某物实现出,当我们想要避免重复 ...

  8. Windows Server 2003单网卡搭建VPN

    Windows Server 2003单网卡搭建VPN   1.打开[控制面板] --> [管理工具] --> [路由和远程访问] 2.鼠标右击你要管理的电脑 在弹出式菜单中选中[配置并启 ...

  9. Cloud_panel

    传统基础架构应用程序的系统架构师,云计算应用程序的设计确实是相当有挑战性的工作.体现在应用程序架构师首先要了解云计算环境和传统基础架构的差异并且充分利用云计算平台的一些特点来更好的满足用户需求. 对于 ...

  10. UVa 11536 Smallest Sub-Array (水题, 滑动窗口)

    题意:给定 n 个由0~m-1的整数组成的序列,输入 k ,问你找出连续的最短序列,使得这个序列含有1-k的所有整数. 析:这个题,很简单么,只要从头开始扫一遍就OK,时间复杂度为O(n). 代码如下 ...