我将此脚本用于相同的盒子高度

<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.11.2.min.js">
$(document).ready(function(){

    var highestBox = 0;
        $('.box').each(function(){
                if($(this).height() > highestBox){
                highestBox = $(this).height();
        }
    });
    $('.box').height(highestBox);

});
</script>


但是实际上它有点奇怪。首先,它从数据库加载数据,然后应该这样做,但是没有这样做,因此我需要刷新页面以获得在页眉中使用与页脚中相同的效果。没有任何建议,我做错了什么?
页面是matus-satara.com您可以实时检查它:)

最佳答案

同一脚本标记中不能同时包含src和实际内容。

像这样分开脚本:

<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.11.2.min.js"></script>
<script>
$(document).ready(function(){

    var highestBox = 0;
        $('.box').each(function(){
                if($(this).height() > highestBox){
                highestBox = $(this).height();
        }
    });
    $('.box').height(highestBox);

});
</script>

关于jquery - 刷新后即可使用相同高度的盒子,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31014017/

10-11 13:37