如何在ie8上获得正确的div高度

时间:2015-07-22 12:50:39

标签: javascript jquery

这是我的代码。我的代码在所有浏览器上运行正常,但只有ie8无法正常工作。我已经尝试了很多东西但仍然有问题。对于糟糕的英语我希望你能理解。

总结:我需要在ie8上正确的div高度。

$(window).load(function () {
    /*Orta alan kaydırma*/
    $("#content-container").height($(".content-left").outerHeight());
    $(window).scroll(function () {
        $(".content-left>#content-inline").animate({
            top: -($(window).scrollTop())
        }, 1);
        if ($(window).scrollTop() > 1) {
            $(".make-fixed-white").css("border-bottom-color", "#f2f2f2");
        } else {
            $(".make-fixed-white").css("border-bottom-color", "transparent");
        }
        if ($(".letter").length) {
            if ($(window).scrollTop() > $(".letter").offset().top - 100) {

                $(".letter ul").addClass("make-fixed-white");

            } else {
                $(".letter ul").removeClass("make-fixed-white");
            }
        }
    });
    /*tablo kaydırma*/
    $(window).scroll(function () {
        $(".table-slide").animate({
            top: -($(window).scrollTop())
        }, 1);

    });
});
/***************************************************/

0 个答案:

没有答案