clientHeight 有关问题
clientHeight 问题
alert(document.body.clientHeight);
输出的是0什么意思? 游览器是IE6.0 的奇怪 这个应该是屏幕的高度
alert(document.body.clientWidth);
输出的975
------解决方案--------------------
IE6取消了很多document.body里的属性.改到docuemnt.documentElement里去了.
alert(document.body.clientHeight);
输出的是0什么意思? 游览器是IE6.0 的奇怪 这个应该是屏幕的高度
alert(document.body.clientWidth);
输出的975
------解决方案--------------------
IE6取消了很多document.body里的属性.改到docuemnt.documentElement里去了.