window.showModalDialog模態視窗引數說明
Window.ShowModalDialog的引數問題(父窗體向子窗體傳值)
create date:2009-5-12
description:window.showModalDialog開啟子視窗並重新整理主頁面
param strUrl:子頁面路徑
param width:子頁面顯示寬度
param height:子頁面顯示高度
------------------------------------------------------------*/
function openDialog(strUrl,width,height)
{
window.showModalDialog(strUrl,window,'dialogWidth:'+width+'px;dialogHeight:'+height+'px;center:yes;status:no;scroll:off;');
window.location.href = location.href;
return false;
}
function openDialogEmail(strUrl,width,height)
{
window.showModalDialog(strUrl,window,'dialogWidth:'+width+'px;dialogHeight:'+height+'px;center:yes;status:no;scroll:yes;');
return false;
}
基本介紹: //火狐不支援上面的方法需要用下面的方法 <base target="_self"></base> |