0

我正在使用 Jquery-1.7 以下是我的 jquery 代码。它在 chrome 中工作,但在 IE 中失败

$(window).bind('scroll', function () {
    if ($(this).attr('scrollY') > $('#footerCenter').offset().top - $(window).height() - 60) {
        if ($('#earthMoonLink').hasClass('more')) {
            $('#earthMoonLink').removeClass('more').text('earth').attr({href: '#Earth', title: 'Back to Top'});
        }

    } else {
        if (!$('#earthMoonLink').hasClass('more')) {
            $('#earthMoonLink').addClass('more').text('moon').attr({href: '#Moon', title: 'Jump to Footer'});
        }
    }
});

我在 IE 9 和 10 上遇到错误

SCRIPT438: Object doesn't support property or method 'getElementsByTagName' 
jquery.min.js, line 16 character 59008
SCRIPT5007: Unable to get property 'top' of undefined or null reference 
base.js, line 48 character 9
4

1 回答 1

0

我相当确定

$(this).attr('scrollY')

应该

this.scrollY

据我所知,这不是一个有效的属性

于 2013-09-13T16:30:31.947 回答