有关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("对不起,参数为空");
}