本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- xiangjie88
- zysnba
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- gengyun12
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sam123456gz
- sichunli_030
- arpenker
- tanling8334
- gaojingsong
- kaizi1992
- xpenxpen
- 龙儿筝
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- mengjichen
- jbosscn
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- zhanjia
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- mwhgJava
- kingwell.leng
最新文章列表
window.open和window.showModalDialog区别
window.open和window.showModalDialog区别:
1.都是在IE上打开新窗口,只不过前者是非阻塞式,也可以说非模态窗口。而后者是阻塞式模态窗口。阻塞或者模态窗口,只有你把当前窗口关闭后,才能去操作父亲窗口。
2.参数上:
oNewWindow = window.open( [sURL] [, sName] [, sFeatures] [, bReplace])打开 ...
JavaScript show modal dialog
Index.html:
<html>
<head>
<script anguage="javascript">
function show() {
var settings="dialogWidth:245px;dialogHeight:390px;resizable:no;status ...
window.showModalDialog 各个参数的含义
open的参数 窗口特征(Window Features)的说明
channelmode=yes|no|1|0 是否使用剧院模式显示窗口。默认为 no。 directories=yes|no|1|0 是否添加目录按钮。默认为 yes。 fullscreen=yes|no|1|0 是否使用全屏模式显示浏览器。默认是 no。处于全屏模式的窗口必须同时处于剧院模式。
height=pixels 窗口文档 ...
window.showModalDialog与window.open
//window.showModalDialog全屏显示
function winModalFullScreen(strURL){
var sheight = screen.height-70;
var swidth = screen.width-10;
var winoption ="dialogHeight:"+sheight+"px;dialog ...
window.showModalDialog给父窗口赋值
window.open
打开窗口时,可以很轻松的取得其父窗口。项目中需要用 showModalDialog打开窗口,想要取得父窗口值,而且还要在 open的基础上修改
为了不让 window.returnValue 所返回的值不是那么烦索,就要想办法如何用showModalDialog
打开的窗口取得其父窗口。何理利用 showModalDialog 传入的参数便可以解决这个问题。
...
弹出框刷新父页面
window.showModalDialog弹出刷新父页面:
父页面写:
function parentFun(){
var returnValue = window.showModalDialog(url,window,'dialogWidth:500px;dialogHeight:450px;help:No;resizable:no;status:no;center:1;sc ...
父/子页面方法调用
父页面/子页面相互调用关系(三种情况):
1.父页面采用window.open()方式打开子页面
【父页面调用子页面】
var child = window.open(); // child为子页面对象
child.method(); // method为子页面方法
【子页面调用父页面】
window.opener.method(); // opener为父页面对象,method为 ...
window.showModalDialog以及window.open用法简介
转自:http://www.cnblogs.com/zhangyi85/archive/2009/09/03/1559594.html
一、window.open()支持环境: JavaScript1.0+/JScript1.0+/Nav2+/IE3+/Opera3+
二、基本语法:
window.open(pageURL, ...