$("#someDiv").attr("scrollHeight")
适用于所有浏览器的jquery 1.3.2 。但是在更新到jquery 1.6.1 时,它只适用于IE9。
Firefox 4.0.1,Google Chrome 11和Safari 5都返回undefined。
$("#someDiv").get(0).scrollHeight
但仍适用于所有浏览器。
有人知道发生了什么吗?在最新的jquery(即版本1.6.1)中 attr("scrollHeight")
被破坏了吗?
答案 0 :(得分:38)