问答详情
源自:9-18 浏览器窗口可视区域大小

在不同浏览器都实用的 JavaScript 方案应该是这样的:

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

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


可以参考http://www.w3school.com.cn/js/js_window.asp的讲解

提问者:Innocence617 2015-01-08 16:44

个回答