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

http://dwcmayday201204063551.iteye.com/blog/1621751

http://www.cnblogs.com/zhangyi85/archive/2009/09/03/1559594.html

http://blog.csdn.net/dotnetsong/article/details/2684854

http://dwcmayday201204063551.iteye.com/blog/1621751

http://blog.csdn.net/dotnetsong/article/details/2684854

一、前言 
要打开一个可以载入页面的子窗口有三种方法,分别是window.open、window.showModalDialog和window.showModelessDialog。 
open方法就是打开一个页面,可以说同用url链接打开一个页面一样,不推荐使用,因为很多浏览器会拦截。 
这里推荐使用的是window.showModalDialog和window.showModelessDialog,下面介绍二者的异同和用法。 

二、 showModalDialog和showModelessDialog的区别 
showModalDialog:被打开后就会始终保持输入焦点,除非对话框被关闭,否则用户无法切换到父窗口,类似alert的运行效果。 
showModelessDialog:被打开后,用户可以随机切换输入焦点。对主窗口没有任何影响,最多是被挡住一下而以。 

三、怎样才让在showModalDialog和showModelessDialog里的超连接不弹出新窗口 
在默认情况下,showModalDialog和showModelessDialog窗口中的链接都会导致打开一个新的窗口,但这不是我们需要的。 
解决这个问题的方法是在被showModalDialog和showModelessDialog窗口调用的页面添加<base target="_self" /> 
如下: 
    <title>被打开的页面</title> 
    <base target="_self" /> 

四.、showModalDialog和showModelessDialog不使用缓存 
showModalDialog和showModelessDialog在第一次打开页面时会默认缓存该页面,如果再次打开相同URL的页面的话,他们会直接调用缓存中的页面,而不是从服务器返回,要不使用缓存可进行如下配置: 
<title>被打开的页面</title> 
<meta http-equiv="pragram" content="no-cache"> //禁止浏览器从本地缓存中调阅页面,网页不保存在缓存中,每次访问都刷新页面。 
<meta http-equiv="cache-control" content="no-cache, must-revalidate">          //同上面意思差不多,必须重新加载页面 
<meta http-equiv="expires" content="0">    //网页在缓存中的过期时间为0,一旦网页过期,必须从服务器上重新订 
上面的配置不一定有效果,所以不推荐使用,最好的办法是在URL后加上一个时间戳,如下: 
url = url + “&time=” + new Date(); 

五、如何刷新showModalDialog和showModelessDialog里的内容 
在showModalDialog和showModelessDialog里是不能按F5刷新的,又不能弹出菜单。这个只能依靠javascript了,以下是相关代码: 
<body onkeydown="if (event.keyCode==116){reload.click()}"> 
<a >,不然会打开一个新的IE窗口,然后再关掉的。 

七、 showModalDialog和showModelessDialog数据传递技巧(例子用的是showModalDialog函数,showModelessDialog函数的用法一样) 
1)   父窗体向打开的窗体传递数据一般使用url参数传递 
2)  打开的窗体,即子窗体向父窗体进行数据传递有两种方法 
(1)    第一种称为“函数法”,同调用一个函数并返回值一样 
可以通过在被调用的页面(子页面)使用window.returnValue来设置返回值,返回值可以是任何值或对象,调用页面(父页面)直接获取返回值即可。 
//父窗体js,直接通过函数获取返回值 
     

Html代码  window.open || window.showModalDialog || window.showModelessDialog
  1. function openModalWindow(){  
  2.           var returnValue = window.showModalDialog("sonPage.aspx");  
  3.           alert(returnValue);  
  4.       }  



    //子窗体js,通过window.returnvalue来设置返回值 
   

Html代码  window.open || window.showModalDialog || window.showModelessDialog
  1. function setReturnFatherPageValue(){  
  2.        window.returnValue = true;  
  3.     }  



(2)    第二种称为“引用法”,通过传递父窗体的引用,我们可以操作父窗体上的所有东西 
要使用引用法就必须在打开子窗体时将父窗体作为一个参数传递给子窗体,而在子窗体可以通过window.dialogArguments获取到传递过来的父窗体的引用。 
//父窗体js,将整个父window作为参数传递给子窗体 
     

Html代码  window.open || window.showModalDialog || window.showModelessDialog
  1. function openModalWindow(){  
  2.           window.showModalDialog("sonPage.aspx", window);  
  3.       }  



      //子窗体js,通过window.dialogArguments可以访问父window中的所有元素,它在这里代表了父window对象 
     

Html代码  window.open || window.showModalDialog || window.showModelessDialog
  1. function openModalWindow(){  
  2.           var txt = window.dialogArguments.document.getElementByIdx("txt");  
  3.           var lab = window.dialogArguments.document.getElementByIdx("lab");  
  4.           txt.value = "sonPageChangedValue";  
  5.           lab.value = "isTheSame";  
  6.       }  



八、 控制弹出窗体的样式 
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。 
举例如下: 
window.showModalDialog("sonPage.aspx", "", "dialogHeight=350px;dialogwidth=410px;dialogLeft=0;dialogTop=25;help=no;resizable=no;status=no;scrollbars=no;");
或 
window.showModalDialog("sonPage.aspx", window, "dialogHeight=350px;dialogwidth=500px;help=no;scrollbars=no;"); 
都可 

九、  窗口高度自适应,这个需要在每个弹出框加载的页面放置,比较麻烦,而且不完善,使用时请调试好 

Html代码  window.open || window.showModalDialog || window.showModelessDialog
  1. <script type="text/javascript">  
  2.   function resetDialogHeight(){  
  3.       if(window.dialogArguments == null){  
  4.           return; //忽略非模态窗口    
  5.       }  
  6.              var ua = navigator.userAgent;  
  7.       var height = document.body.offsetHeight;  
  8.       if(ua.lastIndexOf("MSIE 6.0") != -1){  
  9.         if(ua.lastIndexOf("Windows NT 5.1") != -1){    //alert("xp.ie6.0");  
  10.             window.dialogHeight=(height+102)+"px";    
  11.         }  
  12.         else if(ua.lastIndexOf("Windows NT 5.0") != -1){    //alert("w2k.ie6.0");    
  13.            window.dialogHeight=(height+49)+"px";  
  14.         }  
  15.       }  
  16.       else{  
  17.         window.dialogHeight=height+"px";  
  18.       }  
  19.     }  
  20. </script>  



然后如下设置即可: 

Html代码  window.open || window.showModalDialog || window.showModelessDialog
    1. <body onload="resetDialogHeight()">