我是jquery插件的新手,使用此代码我想将一个或多个元素的高度扩展到另一个元素的高度(通常是窗口对象)。 请查看代码以查看它是否正确。感谢。
(function( $ ) {
$.fn.expandh = function(padre) {
if(padre==undefined)padre=window;
this.each(function(){
$(this).height($(padre).height() - $(this).offset().top);
});
};
}( jQuery ));