我想知道浏览器窗口的客户端大小。我使用简单的脚本:
wwidth = window.innerWidth
wheight = window.innerHeight
但它在IE8,IE9中无效。如何在各种形式的浏览器中使用extjs知道这个参数?
答案 0 :(得分:13)
如果你正在使用Ext JS,你可以使用:
Ext.getBody().getViewSize()
答案 1 :(得分:1)
这是一个简单的javascript中的示例跨浏览器函数:
var getSize = function () {
var winW = 0, winH = 0;
if (document.body && document.body.offsetWidth) {
winW = document.body.offsetWidth;
winH = document.body.offsetHeight;
}
if (document.compatMode=='CSS1Compat' && document.documentElement && document.documentElement.offsetWidth ) {
winW = document.documentElement.offsetWidth;
winH = document.documentElement.offsetHeight;
}
if (window.innerWidth && window.innerHeight) {
winW = window.innerWidth;
winH = window.innerHeight;
}
return { width: winW, height: winH };
};
window.onload = function(){
alert(getSize().width);
};
答案 2 :(得分:0)
function viewport(){
var e = window , a = 'inner';
if ( !( 'innerWidth' in window ) ) {
a = 'client';
e = document.documentElement || document.body;
}
return { width : e[ a+'Width' ] , height : e[ a+'Height' ] }
}