当前位置: 技术问答>java相关
请问怎样弹出一个模式窗口?什么是模式窗口??
来源: 互联网 发布时间:2015-01-26
本文导语: 要求是弹出的窗口位于最上层,如果这个窗口不关闭的话,就不能切换到其他窗口?? | function aa(){ y=window.showModalDialog("a.html","","Height: 300; Width: 275; help: no"); } qqqq | ...
要求是弹出的窗口位于最上层,如果这个窗口不关闭的话,就不能切换到其他窗口??
|
function aa(){
y=window.showModalDialog("a.html","","Height: 300; Width: 275; help: no");
}
qqqq
|
描述对话框外在样子的字符串,取值如下:
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]。
详细参见:
http://go6.163.com/colorweb/js/mengxhdialog.htm
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]。
详细参见:
http://go6.163.com/colorweb/js/mengxhdialog.htm