jQuery CSS 操作参考手册
设置 <p> 元素的高度:
$(".btn1").click(function(){ $("p").height(50); });
$("p").height(50);
亲自试一试
height() 方法返回或设置匹配元素的高度。
返回第一个匹配元素的高度。
如果不为该方法设置参数,则返回以像素计的匹配元素的高度。
$(selector).height()
设置所有匹配元素的高度。
$(selector).height(length)
可选。规定元素的高度。
如果没有规定长度单位,则使用默认的 px 单位。
使用函数来设置所有匹配元素的高度。
$(selector).height(function(index,oldheight))
规定返回被选元素新高度的函数。