1.模式对话框父窗口 弹出模式对话框 代码如下
Java代码
1.window.showModalDialog(url,window,
2.
3."help:no;scroll:no;resizable:no;status:0;dialogWidth:420px;dialogHeight:200px;center:yes" );
window.showModalDialog(url,window,
"help:no;scroll:no;resizable:no;status:0;dialogWidth:420px;dialogHeight:200px;center:yes" );
1.
参数1 url,url后面可以接"?name=user"参数
参数2 传递给子窗口的值 可以是window对象,数组 var arry=[],其他变量 类型不限制,对于字符串类型,最大为4096个字符。也
可以传递对象
参数3 设置子窗口的高度 ,宽度 等元素
dialogHeight :对话框高度,不小于100px,IE4中dialogHeight 和 dialogWidth 默认的单位是em,而IE5中是px,为方便
其见,在定义modal方式的对话框时,用px做单位。
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。
下面几个属性是用在HTA中的,在一般的网页中一般不使用。
dialogHide:{ yes | no | 1 | 0 | on | off }:在打印或者打印预览时对话框是否隐藏。默认为no。
edge:{ sunken | raised }:指明对话框的边框样式。默认为raised。
unadorned:{ yes | no | 1 | 0 | on | off }:默认为no。
2.子父窗口传值
在子窗口获取 父窗口的值
var param = window.dialogArguments //获取传递的参数
如果是 数组或字符串对象 可以在子窗口进行相应操作,例如把该值赋给子窗口的某个元素等等
如果传递的是 父窗口对象 可以通过 param .document.getElementById('checkAllid2'); 获取父窗口的
html 元素进行相应的操作
3.模式对话框提交
模式对话框如果有form需要提交,提交时会新开一个浏览器,所以模式对话框提交时需要提交到
fream框架页面 在form元素中加上target="mainFrame"
Java代码
1.<form id="myFrom" action="submit.jsp?checkResult=failure" method="post" target="mainFrame">
2. </form>
<form id="myFrom" action="submit.jsp?checkResult=failure" method="post" target="mainFrame">
</form>
target="mainFrame" 是主页面的 中间框架的id
主页面
Java代码
1.<frameset id="middleframe" rows="95,8,*,30" cols="*" framespacing="0">
2. <frame src="bannar.jsp" name="topFrame" scrolling="NO" noresize border=0 frameborder=0>
3. <frame src="scollbar.htm" name="ScollbarFrame" scrolling="NO" noresize border=0 frameborder=0 >
4. <frameset id="bodyFrame" rows="*" cols="230,8,*" framespacing="0" border="0" >
5. <frame src="menu.jsp" name="leftFrame" scrolling="no" noresize border=0 frameborder=0>
6. <frame src="Scoll.htm" name="ScollFrame" scrolling="NO" noresize border=0 frameborder=0>
7. <frame src="main_tab.jsp" name="mainFrame" id="mainFrame" scrolling="auto" border=0 frameborder=0><!--
8.
9.main/main_tab.html -->
10. </frameset>
11. <frame src="bottom.jsp" scrolling="NO" name="bottomFrame" id="bar" border=0 frameborder=0>
12.</frameset>
<frameset id="middleframe" rows="95,8,*,30" cols="*" framespacing="0">
<frame src="bannar.jsp" name="topFrame" scrolling="NO" noresize border=0 frameborder=0>
<frame src="scollbar.htm" name="ScollbarFrame" scrolling="NO" noresize border=0 frameborder=0 >
<frameset id="bodyFrame" rows="*" cols="230,8,*" framespacing="0" border="0" >
<frame src="menu.jsp" name="leftFrame" scrolling="no" noresize border=0 frameborder=0>
<frame src="Scoll.htm" name="ScollFrame" scrolling="NO" noresize border=0 frameborder=0>
<frame src="main_tab.jsp" name="mainFrame" id="mainFrame" scrolling="auto" border=0 frameborder=0><!--
main/main_tab.html -->
</frameset>
<frame src="bottom.jsp" scrolling="NO" name="bottomFrame" id="bar" border=0 frameborder=0>
</frameset>
4.可以通过window.returnValue向打开对话框的窗口返回信息,当然也可以是对象。例
Java代码
1.parent.htm
2.<script>
3.str =window.showModalDialog("modal.htm",,"dialogWidth=200px;dialogHeight=100px");
4.alert(str);
5.</script>
6.modal.htm
7.<script>
8.window.returnValue="http://www.web3.cn";
9.</script>
parent.htm
<script>
str =window.showModalDialog("modal.htm",,"dialogWidth=200px;dialogHeight=100px");
alert(str);
</script>
modal.htm
<script>
window.returnValue="http://www.web3.cn";
</script>
2.window.open
window.open打开窗口时 可以打开多个 且焦点不会锁定在子窗口,仍然能够操作父窗口。这样的特点使得某些情况下
我们最好不要用open打去开一个子窗口
父窗口打开子窗口代码
Java代码
1.window.open(url, "","help=no,toolbar=no,height=330,width=515,top=50,left=50,resizable=no,status=no,toolbar=no,menubar=no,directories ,titlebar=no,location=no");
window.open(url, "","help=no,toolbar=no,height=330,width=515,top=50,left=50,resizable=no,status=no,toolbar=no,menubar=no,directories ,titlebar=no,location=no");
参数1.url,url后面可以接"?name=user"
参数2.弹出窗口的名字(非文件名) 可以为空
参数3.设置子窗口的高度 ,宽度 等属性
height=100 窗口高度;
width=400 窗口宽度;
top=0 窗口距离屏幕上方的象素值;
left=0 窗口距离屏幕左侧的象素值;
toolbar=no 是否显示工具栏,yes为显示;
menubar,scrollbars 表示菜单栏和滚动栏。
resizable=no 是否允许改变窗口大小,yes为允许;
location=no 是否显示地址栏,yes为允许;
status=no 是否显示状态栏内的信息(通常是文件已经打开),yes为允许;
下面附件我写了个简单的例子
分享到:
相关推荐
首先,我们来详细探讨`window.showModalDialog`。`showModalDialog`方法用于打开一个模态对话框,这意味着用户必须关闭这个对话框才能与页面的其他部分进行交互。它接受三个参数:对话框要加载的URL、对话框的初始...
Window.showModalDialog 和 Window.open 都是 JavaScript 中的方法,用于创建新窗口或对话框,下面分别介绍它们的用法和参数。 一、Window.open() 方法 Window.open() 方法用于打开一个新的浏览器窗口,可以指定新...
让我们深入探讨一下`Window.showModalDialog()`的详细用法和相关知识点。 首先,`showModalDialog()`方法的基本语法如下: ```javascript window.showModalDialog(url, [dialogArguments], [features]); ``` 1. *...
本文将详细介绍`window.showModalDialog`的使用方法及其相关知识点。 1. **基本语法** `window.showModalDialog` 的基本调用形式如下: ```javascript var returnValue = window.showModalDialog(url, window, ...
This is a `window.showModalDialog()` shim using a modal HTML5 `<dialog>` element and ECMAScript 6 Generators. It was tested in the latest Google Chrome with the *Enable Experimental JavaScript* flag ...
### JS弹出对话框 `window.showModalDialog()` 的使用与详解 #### 一、`window.showModalDialog()` 概述 在JavaScript中,`window.showModalDialog()` 是一个非标准但广泛使用的API,用于创建模态对话框。模态...
在JavaScript中,`window.showModalDialog`是一个古老但仍然有用的函数,用于打开一个模态对话框,用户在对话框中进行交互,直到关闭对话框为止。然而,当涉及到跨域时,`showModalDialog`面临一个问题:它无法正确...
下面我们将详细探讨`window.showModalDialog`的使用及其相关知识点。 首先,`window.showModalDialog`的基本语法如下: ```javascript var returnValue = window.showModalDialog(url, [dialogArguments], ...
本文将重点介绍模态对话框的使用方法`window.showModalDialog()`。 模态对话框是一种阻止用户与网页其他部分互动,直到关闭对话框为止的交互方式。`window.showModalDialog()`是Internet Explorer 4及更高版本支持...
window.showModalDialog以及window.open用法简介
### window.showModalDialog 的基本用法 `window.showModalDialog` 是一个早期的浏览器功能,主要在 Internet Explorer(IE)4.0 及以上版本中支持。它用于打开一个新的模态对话框窗口,并且该窗口将阻止用户与主...
主页面用window.showModalDialog的时候,如果直接打开其它系统的页面,这时候别人的页面在window.returnValue=1;这样返回值的时候,主页面是取不到返回值的,原因就是因为跨域了.
本文将详细介绍如何在Struts2项目中实现这一功能。 #### Struts2简介 Struts2是基于MVC设计模式的一个开源Java Web应用框架,它简化了Java Web应用的开发过程。Struts2提供了一套完整的解决方案来处理用户请求,...
下面我们将详细讨论`window.showModalDialog`的用法及其与`parent.jsp`页面的关系。 `window.showModalDialog`的主要作用是打开一个新的浏览器窗口,这个窗口会阻止用户与当前窗口的交互,直到新窗口被关闭。它的...
### ShowModalDialog与window.open的区别 #### 一、概述 在Web开发中,有时需要创建新的浏览器窗口或对话框来实现特定功能,如显示警告、输入数据等交互操作。JavaScript 提供了两种常用的方法来创建这类窗口:`...
描述中的链接指向了博客文章,虽然具体内容未给出,但可以推测文章可能详细介绍了 `showModalDialog` 的使用、优缺点以及替代方案,因为这个函数在现代 Web 开发中已逐渐被弃用,主要原因包括不兼容性(尤其是在某些...
标题 "window.ShowModalDialog在Chrome中...附带的文件 "window-ShowModalDialog-not-working-in-Chrome.pdf" 很可能包含更详细的分析、原因解释以及可能的解决方案步骤。建议查阅该文件以获取更深入的信息和技术细节。