首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

相干showModalDialog和window.open(转载)

2012-09-04 
有关showModalDialog和window.open(转载)转载meta http-equivCache-Control contentno-cache,must-r

有关showModalDialog和window.open(转载)
转载<meta http-equiv="Cache-Control" content="no-cache,must-revalidate">

3。使用F5刷新页面

<body onkeydown="if (event.keyCode==116){reload.click()}">
<a id="reload" href="<%=Request.Url%>" style="display:none"></a>

4。突然还发现一些通过showModalDialog传值的方法,比window.open 要好,不过没有试过:

父页面:<body onkeydown="if (event.keyCode==116){reload.click()}">
<a id="reload" href="<%=Request.Url%>" style="display:none"></a>

window.showModalDialog(url,aInfo,sFeatures);

子页面:<script language="JavaScript">
<!--
//获取父窗口传来的对象(本例中就是父页面中的“oInfo”数组对象,也可用“window”对象,以便对父页面进行操作。总之,只要是object类型就成。)
var args = window.dialogArguments;
if(args!=null){
?//document.write(args);
?for(var i=0;i<args.length;i++){
? document.writeln(args[i]+" "+(i+1)*10);
?}
}else{
?document.writeln("对不起,参数为空");
}

热点排行