封装窗口尺寸(window)的宽高方法

封装窗口尺寸(window)的宽高方法

window.innerHieght/ innerWidth ie9及以上兼容

ie8 及以下:

标准模式: CSS1Compat 

 x: document.documentElement.clientWidth,

y: document.documentElement.clientHeight

混杂模式: BackCompat

 x: document.body.clientWidth,

 y: document.body.clientHeight