本文目录
- 在父窗体中用showModalDialog方式打开一个页面,并在页面中删除一条记录,成功后刷新本页面,再关闭本页面
- JavaScript showModalDialog()用法
- 用windowshowModalDialog打开窗体之后如何关闭
- 如何获取window.showmodaldialog的参数
- showmodaldialog 调用父窗口的方法
- js中怎么使用showModalDialog,弹出一个自适应大小窗口
- 火狐怎么配置使用showmodaldialog
- 如何关闭showModalDialog窗口
- asp中window.showModalDialog的使用
- window.showModalDialog()问题
在父窗体中用showModalDialog方式打开一个页面,并在页面中删除一条记录,成功后刷新本页面,再关闭本页面
showModalDialog 是打一个模式窗口,模式窗口的意思是不关闭后打开的窗口就操作不了前一个窗口,比如打开IE,再点Internet选项一样,Internet就是一个模式窗口。window.showModalDialog(URL,dialogArgments.features) 打开一个新窗口(IE4、IE5、IE6支持,在IE7中没有window.showModalDialog这个方法,所以取不到该值 。你可以实现有其它方法来实现这个)。dialogArgments为设定好传递给新视窗网页的参数,可以为任意数据类型。 调用格式为featureName1:featureValue1:(分号)featureName2:featureValue2: certer , dialogHeight, dialogLeft,dialogTop,dialogWidth,help(是否显示help按钮,下同),status,resizeable 值=1为yes,0为no.
我认为最重要的是dialogArgments,可以传递值到新的窗口。
第二重要就是它的返回值 window.returnValue.可以在showModalDialog开启的窗口关闭后前,回传一个任意类型的值。
-----------------------------------------------删除---------------------------------------------------------------
不明白你指的删除什么意思,不是直接删除表单数据吧,还是删除数据库中数据。
-----------------------------------------------刷新---------------------------------------------------------------
在showModalDialog里是不能按F5刷新的,又不能弹出菜单。这个只能依靠javascript了,以下是相关代码:
《body onkeydown=“if (event.keyCode==116){reload.click()}“》
《a id=“reload“ href=“filename.htm“ style=“display:none“》reload...《/a》
将filename.htm替换成网页的名字然后将它放到你打开的网页里,按F5就可以刷新了,注意,这个要配合《base target=“_self“》使用,不然你按下F5会弹出新窗口的。
-----------------------------------------------关闭---------------------------------------------------------------
用javascript关掉showModalDialog(或showModelessDialog)打开的窗口。
《input type=“button“ value=“关闭“ onclick=“window.close()“》
也要配合《base target=“_self“》,不然会打开一个新的IE窗口,然后再关掉的。
JavaScript showModalDialog()用法
这个用的不是很多,不是也是有使用的情况的。
【转】
window.showModalDialog() 方法用来创建一个显示HTML内容的模态对话框。(就是打开后不能操作父窗口,只能等模式 窗口关闭时才能操作)
window.showModelessDialog() 方法用来创建一个显示HTML内容的非模态对话框。(就是打开后仍然可以进行其他的操作)
使用方法:
vReturnValue = window.showModalDialog(sURL [, vArguments] [,sFeatures])
vReturnValue = window.showModelessDialog(sURL [, vArguments] [,sFeatures])
参数说明:
sURL -- 必选参数,类型:字符串。用来指定对话框要显示的文档的URL。
vArguments -- 可选参数,类型:变体。用来向对话框传递参数。传递的参数类型不限,包括数组等。对话框通过 window.dialogArguments来取得传递进来的参数。
sFeatures -- 可选参数,类型:字符串。用来描述对话框的外观等信息,可以使用以下的一个或几个,用分号“;”隔开。
【参考资料链接】
http://www.jb51.net/article/35679.htm
用windowshowModalDialog打开窗体之后如何关闭
1.showModalDialog打开的窗口想访问父窗口的数据的话代码window.showModalDialog(“filename.htm“,window)
在子窗体中用window.dialogArguments得到就是你的父窗体对象,这样就能访问到父窗体数据了.
2.在子窗体应用的文件的head区之间添加代码《base target=“_self“
这样在打开的子窗体中的链接仍然会在子窗体刷新,而不会跑到新窗口。。
3.配合上面这句以后,window.close()就可以关闭打开的Dialog了。
-关闭
如何获取window.showmodaldialog的参数
获取window.showmodaldialog的参数:
window.showModalDialog有一个属性是url,你可以把这两个参数通过url的get方法 var url = “sendreceive-oil!getDetailjsp.do?id=“+id;传到后台action中,然后在action中保存这两个参数用ActionContext.getContext().put(“id“, id);保存到actioncontext中,然后在子窗口用 《input name=“id“ type=“hidden“ id=“id“ value=“${requestScope.id}“/》。然后在jsp用 document.getElementById(“id“).value;就可以得到这个参数了
-s
showmodaldialog 调用父窗口的方法
就是一个父窗体和子窗体之间传值的问题。请看下面示例:
父窗体 FatherPage.htm:
《script type=“text/javascript“》
function OpenChildWindow()
{ //打开子窗体
window.showModalDialog(’ChildPage.htm’,document.getElementById(’txtInput’).value);
}
《/script》
《input type=“text“ id=“txtInput“ /》
《input type=“button“ value=“OpenChild“ onclick=“OpenChildWindow()“ /》
子窗体ChildPage.htm:-关闭
《body onload=“Load()“》
《script type=“text/javascript“》
function Load()
{ //获得父窗体传来的对象
document.getElementById(’txtMyInput’).value=window.dialogArguments ;
}
《/script》
《input type=“text“ id=“txtMyInput“ /》
《/body》
由此可见showModalDialog可以通过参数,在父子窗体之间传递数据。再看看showModalDialog函数定义:-s
vReturnValue = window.showModalDialog(sURL [, vArguments] [,sFeatures])
sURL--必选参数,类型:字符串。用来指定对话框要显示的文档的URL。
vArguments--可选参数,类型:变体。用来向对话框传递参数。传递的参数类型不限,包括数组等。对话框通过window.dialogArguments来取得传递进来的参数。
sFeatures--可选参数,类型:字符串。用来描述对话框的外观等信息,可以使用以下的一个或几个,用分号“;”隔开。-关闭
所以,你的问题的解决方案,在父窗体调用showModalDialog时,通过第二个参数将对象传递过去。在子窗体中通过window.dialogArguments获得对象,并加以使用。
js中怎么使用showModalDialog,弹出一个自适应大小窗口
showModalDialog(sURL [, vArguments] [, sFeatures])
这个是参数形式,后面2个参数可以缺省。其中 sFeatures就是dialog的显示控制。如果要实现自适应的话,可以在新窗口中(就是url指向的窗口)用js来实现。
在url指向的页面加上
《script》
window.attchEvent(“onload“,function(){ 调整窗口函数 });
《/script》
至于调整函数怎么写就看你页面里面有什么了。简单的方法可以获取window.document.body的 width 和 height 然后稍微加大一点赋给 sFeatures的width和height
-s
火狐怎么配置使用showmodaldialog
在Firefox中却没有showModalDialog这东西,
而在FireFox中我们只能使用window.open实现这样的功能,
window.open的语法如下 :oNewWindow
= window.open( [sURL]
[, sName] [,
sFeatures] [,
bReplace])
只是,在Firefox下,window.open的参数中,sFeature多了一些功能设定,
而在FireFox下要让开启的窗口跟IE的showModalDialog一样的话,
只要在sFeatures中加个modal=yes就可以了,
范例如下:
window.open(’openwin.html’,’newWin’,’modal=yes,width=200,height=200,resizable=no,scrollbars=no’);
提到了子窗口,不得不提的就是子窗口跟母窗口间的交互操作,
因为我想很多人开启对话窗口应该都是为了将操作完的结果丢回去给母窗口...
如果是用showModalDialog的话,
在子窗口中要存取母窗口的函数的话,
要注意两个地方,
1.(母窗口中)开启窗口:
window.showModalDialog(“openwin.html“,self,’modal=yes,width=775,height=700,resizable=no,scrollbars=no’);
在第二个参数(vArguments),改成self.
2.(子窗口中)调用母窗口的函数:
window.dialogArguments.ShowMsg(obj.value);
ShowMsg为母窗口中的函数.
-关闭
如何关闭showModalDialog窗口
一、showModalDialog和showModelessDialog有什么不同?
showModalDialog:被打开后就会始终保持输入焦点。除非对话框被关闭,否则用户无法切换到主窗
口。类似alert的运行效果。
showModelessDialog:被打开后,用户可以随机切换输入焦点。对主窗口没有任何影响(最多是被挡
住一下而以。
二、怎样才让在showModalDialog和showModelessDialog的超连接不弹出新窗口?
在被打开的网页里加上《base target=“_self“》就可以了。这句话一般是放在《head》之间的。
三、怎样才刷新showModalDialog和showModelessDialog里的内容?
在showModalDialog和showModelessDialog里是不能按F5刷新的,又不能弹出菜单。这个只能依靠
javascript了,以下是相关代码:
《body onkeydown=“if (event.keyCode==116){reload.click()}“》
《a id=“reload“ href=“filename.htm“ style=“display:none“》reload...《/a》
将filename.htm替换成网页的名字然后将它放到你打开的网页里,按F5就可以刷新了,注意,这个要
配合《base target=“_self“》使用,不然你按下F5会弹出新窗口的。
四、如何用javascript关掉showModalDialog(或showModelessDialog)打开的窗口。
《input type=“button“ value=“关闭“ onclick=“window.close()“》
也要配合《base target=“_self“》,不然会打开一个新的IE窗口,然后再关掉的。
五、showModalDialog和showModelessDialog数据传递技巧。
(作者语:本来想用一问一答形式来写的,但是我想不出这个怎么问,所以只好这样了。)
这个东西比较麻烦,我改了好几次了不是没办法说明白(语文水平越来越差了),只好用个例子说明了
例子:
现在需要在一个showModalDialog(或showModelessDialog)里读取或设置一个变量var_name
一般的传递方式:
window.showModalDialog(“filename.htm“,var_name)
//传递var_name变量
在showModalDialog(或showModelessDialog)读取和设置时:
alert(window.dialogArguments)//读取var_name变量
window.dialogArguments=“oyiboy“//设置var_name变量
这种方式是可以满足的,但是当你想在操作var_name同时再操作第二个变理var_id时呢?就无法
再进行操作了。这就是这种传递方式的局限性。
以下是我建议使用的传递方式:
window.showModalDialog(“filename.htm“,window)
//不管要操作什么变量,只直传递主窗口的window对象
在showModalDialog(或showModelessDialog)读取和设置时:
alert(window.dialogArguments.var_name)//读取var_name变量
window.dialogArguments.var_name=“oyiboy“//设置var_name变量
同时我也可以操作var_id变量
alert(window.dialogArguments.var_id)//读取var_id变量
window.dialogArguments.var_id=“001“//设置var_id变量
同样还可以对主窗口的任何对象进行操作,如form对象里的元素。
window.dialogArguments.form1.index1.value=“这是在设置index1元素的值“
六、多个showModelessDialog的相互操作。
因为光说很费劲,我就偷点懒,直接用代码来说了,如果不明白的话那就直接来信(oyiboy#163.net(
使用时请将#改成@))问我吧。
以下代码的主要作用是在一个showModelessDialog里移动别一个showModelessDialog的位置。
主文件的部份js代码。
var s1=showModelessDialog(’’控制.htm’’,window,“dialogTop:1px;dialogLeft:1px“) //打开控
制窗口
var s2=showModelessDialog(’’about:blank’’,window,“dialogTop:200px;dialogLeft:300px“)
//打开被控制窗口
控制.htm的部份代码。
《script》
//操作位置数据,因为窗口的位置数据是“xxxpx“方式的,所以需要这样的一个特殊操作函数。
function countNumber(A_strNumber,A_strWhatdo)
{
A_strNumber=A_strNumber.replace(’’px’’,’’’’)
A_strNumber-=0
switch(A_strWhatdo)
{
case “-“:A_strNumber-=10;break;
case “+“:A_strNumber+=10;break;
}
return A_strNumber + “px“
}
《/script》
《input type=“button“ onclick=“window.dialogArguments.s2.dialogTop=countNumber
(window.dialogArguments.s2.dialogTop,’’-’’)“ value=“上移“》
《input type=“button“ onclick=“window.dialogArguments.s2.dialogLeft=countNumber
(window.dialogArguments.s2.dialogLeft,’’-’’)“ value=“左移“》
《input type=“button“ onclick=“window.dialogArguments.s2.dialogLeft=countNumber
(window.dialogArguments.s2.dialogLeft,’’+’’)“ value=“右移“》
《input type=“button“ onclick=“window.dialogArguments.s2.dialogTop=countNumber
(window.dialogArguments.s2.dialogTop,’’+’’)“ value=“下移“》
以上关键部份是:
窗口命名方式:var s1=showModelessDialog(’’控
制.htm’’,window,“dialogTop:1px;dialogLeft:1px“)
变量访问方式:window.dialogArguments.s2.dialogTop
这个例子只是现实showModelessDialog与showModelessDialog之间的位置操作功能,通过这个原理,
在showModelessDialog之间相互控制各自的显示页面,传递变量和数据等。这要看各位的发挥了。
如果打开了一个模式窗口,想在打开的窗口中,关闭本窗口,重新加载父窗口,代码如下:
Response.Write(“《script
language=javascript》parent.window.opener=null;parent.window.dialogArguments.location.reload
();window.close();《/script》“);
或者
function doModal(url){
win=window.showModalDialog
(url,0,“dialogWidth:500px;dialogHeight:500px;status:no;help:no;“);
document.location.reload();//js页面中加入这句话就行了
}
-s
asp中window.showModalDialog的使用
如果你没有在子页里边设置window.returnValue的话,str当然什么也不会接收到。 一般都会这样判断 if(str == ’’ || str == ’undefined’) return;
-关闭
window.showModalDialog()问题
window.showModalDialog()方法用来创建一个显示HTML内容的模态对话框。
window.showModelessDialog()方法用来创建一个显示HTML内容的非模态对话框。
使用方法: vReturnValue = window.showModalDialog(sURL [, vArguments] [,sFeatures])
vReturnValue = window.showModelessDialog(sURL [, vArguments] [,sFeatures])
参数说明:
sURL--
必选参数,类型:字符串。用来指定对话框要显示的文档的URL。
vArguments--
可选参数,类型:变体。用来向对话框传递参数。传递的参数类型不限,包括数组等。对话框通过window.dialogArguments来取得传递进来的参数。
sFeatures--
可选参数,类型:字符串。用来描述对话框的外观等信息,可以使用以下的一个或几个,用分号“;”隔开。
1.dialogHeight :对话框高度,不小于100px,IE4中dialogHeight 和 dialogWidth 默认的单位是em,而IE5中是px,为方便其见,在定义modal方式的对话框时,用px做单位。
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。
下面几个属性是用在HTA中的,在一般的网页中一般不使用。
10.dialogHide:{ yes | no | 1 | 0 | on | off }:在打印或者打印预览时对话框是否隐藏。默认为no。
11.edge:{ sunken | raised }:指明对话框的边框样式。默认为raised。
12.unadorned:{ yes | no | 1 | 0 | on | off }:默认为no。
参数传递:
1.要想对话框传递参数,是通过vArguments来进行传递的。类型不限制,对于字符串类型,最大为4096个字符。也可以传递对象,例如:
-------------------------------
parent.htm 《script》
var obj = new Object();
obj.name=“i5tt“;
window.showModalDialog(“modal.htm“,obj,“dialogWidth=200px;dialogHeight=100px“);
《/script》
modal.htm
《script》
var obj = window.dialogArguments
alert(“您传递的参数为:“ + obj.name)
《/script》
-------------------------------
2.可以通过window.returnValue向打开对话框的窗口返回信息,当然也可以是对象。例如:
------------------------------
parent.htm 《script》
str =window.showModalDialog(“modal.htm“,,“dialogWidth=200px;dialogHeight=100px“);
alert(str);
《/script》
modal.htm
《script》
window.returnValue=“http://www.i5tt.com“;
《/script》
-s