// 弹出窗口程序
function OpenWindow(theUrl,winName,features){
window.open(theUrl,winName,features)
}
function OpenModalWindow(url, width, height){
window.showModalDialog(url, window, "dialogWidth:"+width+"px; dialogHeight:"+height+"px; status:0; resizable:0; scroll:0");
window.location.reload();
}
时间: 2024-11-15 16:15:52