2009-01-19 77 views

回答

9

我能做些什么来得到这个值?

function getScrollSizes() { // call after document is finished loading 
    var el= document.createElement('div'); 
    el.style.visibility= 'hidden'; 
    el.style.overflow= 'scroll'; 
    document.body.appendChild(el); 
    var w= el.offsetWidth-el.clientWidth; 
    var h= el.offsetHeight-el.clientHeight; 
    document.body.removeChild(el); 
    return new Array(w, h); 
} 

而且是高度在Firefox和Internet Explorer中的一样吗?

不,在Internet Explorer和Internet Explorer中,高度并不相同。诸如dpi设置,主题和操作系统版本等变量也会影响它。

+0

Thnx,这工作正常:) – Martijn 2009-01-20 13:36:27