我正在使用 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