居中显⽰弹出窗⼝(兼容IE和Chrome)
2014年的某⼀天,chrome升级后,突然发现某个在⽤的系统不能弹出模态窗⼝了,
常见的弹出窗⼝有div模拟或者⽤window.open代替,对于⼀个已经在⽤的系统来说,采⽤div⽅式转换成本较⾼,采⽤window.open改动
会更少⼀些,但也会丢失其模态性。
这⾥采⽤简单的window.open⽅案,毕竟替换成本低很多。
弹出代码:
var iWidth = 500; //弹出窗⼝的宽度;
var iHeight = 350; //弹出窗⼝的⾼度;
var isChrome = window.navigator.userAgent.indexOf("Chrome") !== -1;
if (isChrome) {
iTop = (window.screen.availHeight - 30 - iHeight) / 2; //获得窗⼝的垂直位置;
iLeft = (window.screen.availWidth - 10 - iWidth) / 2; //获得窗⼝的⽔平位置;
curPopupWindow = window.open(url, windowObj, 'height=' + iHeight + ',width=' + iWidth + ',top=' + iTop + ',left=' + iLeft +',edge=raised, center=yes, help=no,too } else {
curPopupWindow = window.showModelessDialog(url,windowObj, "status:false;dialogWidth:"+iWidth+"px;dialogHeight:"+iHeight+"px;dialogLeft:"+iLeft+"px;dialogT }
窗⼝返回数据代码:
if (isChrome) {
top.window.opener.XXXX = "AAAA";
} else {
top.window.dialogArguments.XXXX = "XXXX";
}
showModalDialog:
基本介绍:
showModalDialog() (IE 4+ ⽀持)
showModelessDialog() (IE 5+ ⽀持)
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
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="51js";
window.showModalDialog("modal.htm",obj,"dialogWidth=200px;dialogHeight=100px");
</script>
modal.htm
<script>
var obj = window.dialogArguments
alert("您传递的参数为:" + obj.name)
</script>车模曹阳
-------------------------------
2.可以通过urnValue向打开对话框的窗⼝返回信息,当然也可以是对象。例如:
------------------------------
parent.htm
<script>
str =window.showModalDialog("modal.htm",,"dialogWidth=200px;dialogHeight=100px");
alert(str);
</script>
modal.htm
<script>
</script>
常见技巧:怎样设置ie为默认浏览器
⼀、怎样才让在showModalDialog和showModelessDialog的超连接不弹出新窗⼝?
在被打开的⽹页⾥加上<base target="_self">就可以了。这句话⼀般是放在<head>之间的。
⼆、怎样才刷新showModalDialog和showModelessDialog⾥的内容?
在showModalDialog和showModelessDialog⾥是不能按F5刷新的,⼜不能弹出菜单。这个只能依靠
javascript了,以下是相关代码:
<body οnkeydοwn="if (event.keyCode==116){reload.click()}">
快手网红宏楠个人资料<a id="reload" href="filename.htm" &</a>
将filename.htm替换成⽹页的名字然后将它放到你打开的⽹页⾥,按F5就可以刷新了,注意,这个要
配合<base target="_self">使⽤,不然你按下F5会弹出新窗⼝的。
三、如何⽤javascript关掉showModalDialog(或showModelessDialog)打开的窗⼝。
<input type="button" value="关闭" οnclick="window.close()">
也要配合<base target="_self">,不然会打开⼀个新的IE窗⼝,然后再关掉的。
四、Math.random与showModalDialog。
当你设置的弹出⽹页固定时(如上⾯的"modal.htm"页⾯),ie很可能到临时⽂件区,下载上次产⽣的该页⾯(openPage.html),⽽没有重新加载,对于动态加载的页⾯来说,这样往往产⽣误会,如没有及时更新数据,也就更不利于开发者测试。所以,你可以采⽤如下⽅式:
var strPage = “/medal.htm?random="+Math.random();
这样每次产⽣的strPage是不⼀样的,原因也就不⾔⾃明了。
⼀、返回⼀个字符串体育锻炼的注意事项
⾸先是⽗页⾯有个按钮,⽤来打开Modal页⾯userList.aspx
function openWin()
{
str =window.showModalDialog("userList.aspx",window,"status:0;help:0;edge:sunken;dialogWidth=700px;dialogHeight=400px");
if(str!=undefined && typeof(str)!=undefined && str!="undefined" && str!="")
{
} else
{
}
}
str就是⼦页⾯返回过来的数据,我们把它添加到⽗类的⼀个表单元素中
⼦页⾯
function getValue()
{
var selectValue=$( ":radio:checked").val();
window.close();
}
在这⾥我们把⼦页⾯⾥的值返回到⽗页⾯⾥就可以了,然后关闭页⾯就可以了
⼆、返回⼀个数据
⽗页⾯
⼦页⾯
function getValue()
{
var array= new Array();
array[0]=ElementById("username").value;
Array[1]=ElementById("sex").value;
window.close();
}
返回⼀个数组就可以了,如果⽤open打开的话,在搜狗或者360浏览器打开的是⼀个页⾯或者阻拦什么的
前段时间在后台使⽤JS的winodw.showModalDialog来查看静态页⾯内容,发现不能及时显⽰更新后的页⾯内容,⽤open打开有时也会出现这种问题
window.showModalDialog(getUrl+"?
Rnd="+Math.random(),"","dialogWidth:600px;dialogHeight:400px;help:no;scroll:yes;center:yes;status:no;"); 这样就不会有缓存了
发布评论