alert($("#test").height());
alert($("#test").innerHeight());
alert($("#test").outerHeight());
alert($("#test").outerHeight(true));
[html]
结果:
在ie中的结果:17px,37px,41px,61px
在ff中的结果:41px,61px,65px,85px
html代码:
[code]
jjjjj
结论:在ie中height包含border和padding并且height最小值为17px ,同理可得width,不过它最小值为15px