function client() { if(window.innerWidth!=null) //ie9+ 最新浏览器 { return{ width:window.innerWidth, height:window.innerHeight } } else if(document.compatMode === "CSS1Compat") //正常页面,声明了DTD的页面(google不支持) { return{ width:document.documentElement.clientWidth, height:document.documentElement.clientHeight } } return{ //怪异页面,没有声明DTD(支持google) width:document.body.clientWidth, height:document.body.clientHeight } }