Heim  >  Artikel  >  Web-Frontend  >  javascript 实现子父窗体互相传值的简单实例_javascript技巧

javascript 实现子父窗体互相传值的简单实例_javascript技巧

WBOY
WBOYOriginal
2016-05-16 16:59:481136Durchsuche

window.showModalDialog() 使用方法:

var returnValue = window.showModalDialog(url [, arguments] [,features]);

url  -- 必选参数,类型:字符串,用来指定对话框要显示的文档的URL

arguments  -- 可选参数,类型:变体,用来向对话框传递参数,传递的参数类型不限,包括数组等,对话框通过window.dialogArguments来取得传递进来的参数

features   -- 可选参数,类型:字符串,用来描述对话框的外观等信息,可以使用以下的一个或几个,用分号“;”隔开

dialogHeight:对话框高度,不小于100px
dialogWidth:对话框宽度
dialogLeft:离屏幕左的距离
dialogTop:离屏幕上的距离
center:{ yes | no | 1 | 0 }:是否居中,默认yes,但仍可以指定高度和宽度  
help:{yes | no | 1 | 0 }:是否显示帮助按钮,默认yes
resizable:{yes | no | 1 | 0 } [IE5+]:是否可被改变大小,默认no
status:{yes | no | 1 | 0 } [IE5+]:是否显示状态栏,默认为yes[ Modeless]或no[Modal]
scroll:{ yes | no | 1 | 0 | on | off }:是否显示滚动条,默认为yes

参数传递:

1. 要想对话框传递参数,是通过arguments来进行传递的,类型不限制,对于字符串类型,最大为4096个字符,也可以传递对象,例如:
parent.htm

复制代码 代码如下:

<script> <P> var obj = new Object(); <P> obj.name="justflyhigh.com"; <P> window.showModalDialog("modal.htm",obj,"dialogWidth=200px;dialogHeight=100px"); <P></script>

modal.htm
复制代码 代码如下:

<script><BR> var obj = window.dialogArguments;<BR> alert("您传递的参数为:" + obj.name)<BR></script>

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

parent.htm

复制代码 代码如下:

<script><BR> var result =window.showModalDialog("modal.htm",,"dialogWidth=200px;dialogHeight=100px");<BR> alert(result);<BR></script>

modal.htm
复制代码 代码如下:

<script><BR> window.returnValue="http://www.jb51.net";<BR></script>
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn