在 IE7、IE8 和 Firefox 上的属性document.body.clientHeight
和返回值不同:document.body.clientWidth
即 8:
document.body.clientHeight : 704
document.body.clientWidth : 1148
即 7:
document.body.clientHeight : 704
document.body.clientWidth : 1132
火狐:
document.body.clientHeight : 620
document.body.clientWidth : 1152
为什么会存在这种差异?
在不使用 jQuery 的情况下,是否存在跨不同浏览器(IE8、IE7、Firefox)一致的等效属性?