0

如果我打开我的测试站点:http: //devauth.labscope.de/htmlapp/report-overview_test.html

并单击左上角的图标(过滤器),使内容和页脚向左滑动,我看到页脚容器的宽度与内容容器的宽度不同,因为内容中的滚动条会这样做。

在此处输入图像描述

我怎样才能在我的代码中解决这个问题?:

jQuery('.filter').on("click", function(e){
        e.preventDefault();

        var state   = $(this).data('state'),
            wrapper = $('#content').data('left'),
            footer  = $('#footer').data('left');

        jQuery("#content").animate({
            left: state ? wrapper : -250,
            duration: 1000
        }, "normal");

        jQuery("#footer").animate({
            left: state ? footer : -250,
            duration: 1000
        }, "normal");

        jQuery(this).data('state', !state);


    });

我希望有人有想法。

4

1 回答 1

1

试试这个:

$(document).ready(function() {
    $('#footer').width($('#content').width());
});
于 2013-10-16T13:43:40.933 回答