扩展阅读
当前位置: Web服务器/前端>javascript
通过javascript实现DIV居中,兼容各浏览器版本
发布时间:2014-1-12
本文导语: DIV始终保持在浏览器中央,兼容各浏览器版本代码如下:window.onresize = resetDiv;
function resetDiv(){
//浏览器宽度
var sWidth = document.documentElement.clientWidth;
//浏览器高度
var sHeight = document.documentElement.clientHeight;
//设置对象
var obj = documen...