height() 方法返回或设置匹配元素的高度。
设置所有匹配元素的高度。
$(selector).height(length)
参数 | 描述 |
---|---|
length |
可选。规定元素的高度。 如果没有规定长度单位,则使用默认的 px 单位。 |
使用函数来设置所有匹配元素的高度。
$(selector).height(function(index,oldheight))
参数 | 描述 |
---|---|
function(index,oldheight) |
规定返回被选元素新高度的函数。
|