jquery扩展元素高度以填充另一个

时间:2015-05-04 22:43:09

标签: jquery jquery-plugins expand

我是jquery插件的新手,使用此代码我想将一个或多个元素的高度扩展到另一个元素的高度(通常是窗口对象)。 请查看代码以查看它是否正确。感谢。

(function( $ ) {
    $.fn.expandh = function(padre) {
        if(padre==undefined)padre=window;
        this.each(function(){
            $(this).height($(padre).height() - $(this).offset().top);
        });
    };
}( jQuery ));

jsfiddle example

0 个答案:

没有答案