bootstrap高さの不統一によるレイアウトの乱れの解決方法

1136 ワード

bootstrap高さの不統一によるレイアウトの乱れ


初めてブログを书いて、ただ记忆を助けるために使うだけで、もし正しくない地方があるならば、また大神の指正を望みます:
reheight();
    $(window).resize(function () {
        reheight();
    });
    function reheight() {
        var arr = [];
        $('#pro_content .show_content .item > div a img').each(function(i){
            arr[i] = $(this).outerHeight();
        });
        $('#pro_content .show_content .item > div a img').height(Math.max.apply(null,arr));
    };

参照先:https://blog.csdn.net/bigbear00007/article/details/80116202