在其他浏览器都可以获取到$('html').height()//浏览器的高度,但在firefox 尝试了各种方法都不行
$('body').height() 其他网上搜索出来的原生js获取浏览器高度或者当前页面的高度都不行。 其他浏览器(Chrome,IE10)正常。
另外这个网页是在一个IFrame里头的。当然,脚本也是在Iframe里头。
学习是最好的投资!
你这里的浏览器高度指的是?看你的代码应该是用了jquery,那么iframe里
实测CHROME29.0.1547.65、FF23.0.1、SAFARI6.0.5有效
一般: document.body.clientHeight/document.body.clientWidth
火狐:document.documentElement.clientWidth/document.documentElement.clientHeight
另外你需要用css将html和body的高度设置为100%
html,body{ height: 100%, width: 100% }
你这里的浏览器高度指的是?看你的代码应该是用了jquery,那么iframe里
实测CHROME29.0.1547.65、FF23.0.1、SAFARI6.0.5有效
一般: document.body.clientHeight/document.body.clientWidth
火狐:document.documentElement.clientWidth/document.documentElement.clientHeight
另外你需要用css将html和body的高度设置为100%
html,body{ height: 100%, width: 100% }