var w= document.documentElement.clientWidth || document.body.clientWidth;
var h= document.documentElement.clientHeight || document.body.clientHeight;offsetWidth属性,offsetHeight属性 这两个属性返回html元素的宽度和高度
对于IE9+、Chrome、Firefox、Opera 以及 Safari:
• window.innerHeight - 浏览器窗口的内部高度(包含滚动条)
• window.innerWidth - 浏览器窗口的内部宽度
对于 Internet Explorer 8、7、6、5:
• document.documentElement.clientHeight表示HTML文档所 在窗口的当前高度。
• document.documentElement.clientWidth表示HTML文档所 在窗口的当前宽度。 或者 Document对象的body属性对应HTML文档的<body>标签
• document.body.clientHeight-- body对象高度
• document.body.clientWidth--body对象宽度