如何通过jquery获取/设置隐藏元素的高度?
<div id="test" style="display:none">...</div>
$("#test").height()
返回0
$("#test").height(30)
返回异常。
答案 0 :(得分:2)
$("#test").ccs("height", "30px");
或
$("#test").height("30px");
它返回0因为它被隐藏了。
答案 1 :(得分:0)
$("#test").height('30')
如果您没有在外部CSS中定义默认宽度并且该元素是隐藏的,则 $("#test").height()
将返回0.