手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >window.returnValue使用方法示例介绍
window.returnValue使用方法示例介绍
摘要:window.showModalDialog是弹出模式窗口的方法returnValue是javascript中html的window对象的属...

window.showModalDialog是弹出模式窗口的方法

returnValue是javascript中html的window对象的属性,目的是返回窗口值,当用window.showModalDialog函数打开一个IE的模式窗口(模式窗口知道吧,就是打开后不能操作父窗口,只能等模式窗口关闭时才能操作)时,用于返回窗口的值,下面举个例子:

1、parent.html

//father.html <HTML> <HEAD> <META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0"> <TITLE></TITLE> <script language="javascript"> function showmodal(){ var ret = window.showModalDialog("child.htm",null,"dialogWidth:350px;dialogHeight:350px;help:no;status:no"); if (ret){alert('子窗口返回真!'); }else{ alert('子窗口返回假!'); } } </script> </HEAD> <BODY> <INPUT id=button1 type=button value=Button name=button1> </BODY> </HTML>

2、child.html

//child.html <HTML> <HEAD> <META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0"> <TITLE></TITLE> <script language="javascript"> function trans(tag){ if (tag==0){ window.returnValue=false; } else{ window.returnValue =true; } window.close(); } </script> </HEAD> <BODY> <INPUT id=button1 type=button value="返回真" name=button1> <INPUT id=button2 type=button value="返回假" name=button2> </BODY> </HTML>

总结:

这样一来可以实现从模式窗口向父窗口传递值的作用,这个returnValue除了可以是布尔值,整型值等以外还可以是个js数组,用来传递大量数据。

具体showModalDialog等的用法,可以参考msdn。

【window.returnValue使用方法示例介绍】相关文章:

javaScript中with函数用法实例分析

JavaScript中的sub()方法的使用介绍

JavaScript中Number.MAX_VALUE属性的使用方法

简述JavaScript中正则表达式的使用方法

JavaScript中valueOf()方法的使用介绍

JS中字符串trim()使用示例

JQuery使用index方法获取Jquery对象数组下标的方法

在JavaScript中使用NaN值的方法

Jquery使用css方法改变样式实例

JavaScript中Cookies的相关使用教程

精品推荐
分类导航