var EV_MsgBox_ID=""; //重要 //弹出对话窗口(msgID-要显示的div的id) function EV_modeAlert(msgID){ //创建大大的背景框 var bgObj=document.createElement("div"); bgObj.setAttribute('id','EV_bgModeAlertDiv'); document.body.appendChild(bgObj); //背景框满窗口显示 EV_Show_bgDiv(); //把要显示的div居中显示 EV_MsgBox_ID=msgID; EV_Show_msgDiv(); } //关闭对话窗口 function EV_closeAlert(){ var msgObj=document.getElementById(EV_MsgBox_ID); var bgObj=document.getElementById("EV_bgModeAlertDiv"); msgObj.style.display="none"; document.body.removeChild(bgObj); EV_MsgBox_ID=""; } //窗口大小改变时更正显示大小和位置 window.onresize=function(){ if (EV_MsgBox_ID.length>0){ EV_Show_bgDiv(); EV_Show_msgDiv(); } } //窗口滚动条拖动时更正显示大小和位置 window.onscroll=function(){ if (EV_MsgBox_ID.length>0){ EV_Show_bgDiv(); EV_Show_msgDiv(); } } //把要显示的div居中显示 function EV_Show_msgDiv(){ var msgObj = document.getElementById(EV_MsgBox_ID); msgObj.style.display = "block"; var msgWidth = msgObj.scrollWidth; var msgHeight= msgObj.scrollHeight; //todo // var bgTop=0; // var bgLeft=0; var bgTop=EV_myScrollTop(); var bgLeft=EV_myScrollLeft(); var bgWidth=EV_myClientWidth(); var bgHeight=EV_myClientHeight(); var msgTop=bgTop+Math.round((bgHeight-msgHeight)/2); var msgLeft=bgLeft+Math.round((bgWidth-msgWidth)/2); msgObj.style.position = "absolute"; msgObj.style.top = msgTop+"px"; msgObj.style.left = msgLeft+"px"; msgObj.style.zIndex = "1001"; } //背景框满窗口显示 function EV_Show_bgDiv(){ var bgObj=document.getElementById("EV_bgModeAlertDiv"); var bgWidth=EV_myClientWidth(); var bgHeight=EV_myClientHeight(); var bgTop=EV_myScrollTop(); var bgLeft=EV_myScrollLeft(); bgObj.style.position = "absolute"; bgObj.style.top = bgTop+"px"; bgObj.style.left = bgLeft+"px"; bgObj.style.width = bgWidth + "px"; bgObj.style.height = bgHeight + "px"; bgObj.style.zIndex = "1000"; bgObj.style.background = "#444"; bgObj.style.filter = "progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=60,finishOpacity=60);"; bgObj.style.opacity = "0.6"; } //网页被卷去的上高度 function EV_myScrollTop(){ var n=window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0; return n; } //网页被卷去的左宽度 function EV_myScrollLeft(){ var n=window.pageXOffset || document.documentElement.scrollLeft || document.body.scrollLeft || 0; return n; } //网页可见区域宽 function EV_myClientWidth(){ var n=document.documentElement.clientWidth || document.body.clientWidth || 0; return n; } //网页可见区域高 function EV_myClientHeight(){ var n=document.documentElement.clientHeight || document.body.clientHeight || 0; return n; }