IE6中clientHeight,在IE 7中不兼容……在IE7中有没有类似的方法和属性?
不要修改 DOCTYPE 类型
2 回答
慕斯709654
TA贡献1840条经验 获得超5个赞
请参考IE7 正式发布版不支持offsetheight,clientheight,scrollheight属性16楼的评论:
使用如下的代码进行测试吧!
var _rootEl=document.compatMode=="CSS1Compat"?document.documentElement:document.body;/*得到当前窗体的根元素*/
alert(_rootEl.clientHeight+"***"+_rootEl.clientWidth);
这个问题也是我在开发中遇到的!最后使用如此来解决这个问题的!!
添加回答
举报
0/150
提交
取消