返回第一个匹配元素的高度(像素数)
$(selector).height();
设置所有匹配元素的高度(像素数)
$(selector).height(50);
使用函数设置所有匹配元素高度(像素数)
$(selector).height( function(index, oldheight) )
function(index, oldheight):返回被选元素新像素数的函数。
index:可选。选择器的index(从0开始)
oldvalue:可选。选择器的当前选择元素的像素数