读书人

jquery 弹出层正中设置

发布时间: 2012-07-25 09:43:05 作者: rapoo

jquery 弹出层居中设置

var iWidth = document.documentElement.clientWidth;var iHeight = document.documentElement.clientHeight;var scrollHeight = document.documentElement.scrollTop;//文档卷去高度var oShow = document.getElementById('show');oShow.style.left = (iWidth-oShow.offsetWidth)/2+"px";oShow.style.top = (iHeight-oShow.offsetHeight)/2+scrollHeight+"px";

读书人网 >Web前端

热点推荐