登錄框不能居中
????????<div?id="login_area"> ???????????????<div?class="loginCon"> ?????????????????<div?id="close"></div> ???????????????</div> ?????????????</div> ????//獲取可視區(qū)域 ????var?wHeight?=?document.documentElement.clientHeight; ????var?wWidth?=?document.documentElement.clientWidth; ?????//登錄框設置 ????var?ologin_area?=?document.getElementById("login_area"); ????//獲取ologin_area的寬度和高度 ????var?dHeight=?ologin_area.offsetHeight; ????var?dWidth=?ologin_area.offsetWidth; ologin_area.style.top=?wHeight/2-dHeight/2+"px"; ologin_area.style.left=wWidth/2-dWidth/2+"px";
好像沒有減去登錄框的高寬,登錄框只能顯示在遮罩層的右下角
2017-04-06
方便看一下全部代碼嗎??