jQuery的高度相等列(jQuery Equal Height Columns)

2019-09-30 03:57发布

http://shoes4school.project-x.me/get-involved.html

有人可以告诉我,我做错了什么的jQuery的列人造......我不能让它尝试几种不同的方法后,工作...

我使用的代码是...我的网址以上

。$Ĵ( “内容块 ”)的高度(Math.max($(“ #右 ”)的高度(),$(“ 内容块”。)的高度())。);

Answer 1:

如何人造的网页列

(function($){
// add a new method to JQuery

$.fn.equalHeight = function() {
   // find the tallest height in the collection
   // that was passed in (.column)
    tallest = 0;
    this.each(function(){
        thisHeight = $(this).height();
        if( thisHeight > tallest)
            tallest = thisHeight;
    });

    // set each items height to use the tallest value found
    this.each(function(){
        $(this).height(tallest);
    });
}
})(jQuery);


Answer 2:

萤火显示此错误:

preloadImages is not defined
 preloadImages([ 


文章来源: jQuery Equal Height Columns
标签: height equals