原生js获取浏览器可视区域的宽度和高度

  • 支持高版本浏览器、IE9及其以上的
    window.innerWidth
  • 支持IE6/7/8
    document.documentElement.clientWidth或者document.body.clientWidth

最终使用兼容写法:

var w=window.innerWidth
|| document.documentElement.clientWidth
|| document.body.clientWidth;

var h=window.innerHeight
|| document.documentElement.clientHeight
|| document.body.clientHeight;

你可能感兴趣的:(js)