如何使用showModalDialog打开页面,主页面变为黑色。
function newsearch(murl,width,height){
murl = encodeURI(murl);
var obj = window.showModalDialog(murl,window,"dialogWidth="+width+"px;dialogHeight="+height+"px;status=no;help=no;");
if(obj == 1)//判断是否刷新
{
//alert('刷新');
window.location.reload();
}
else if(obj == 2)//判断是否刷新
{
//alert('刷新');
window.location='test.asp';
window.close();
}
else{
window.location.reload();
}
//window.location.href =window.location.href; //刷新父窗口
// window.returnValue==1
//window.location.reload(); //刷新父窗口
//dialogArguments.close();
//alert(str);
}