每当我尝试运行选择的 javascript 时,我总是在 IE7、8 或 9 中收到以下控制台错误。但是,它在任何其他浏览器中都可以正常工作。
SCRIPT438: Object doesn't support property or method 'addEventListener'
jquery-2.0.3.min.js, line 3 character 6105
SCRIPT5009: 'jQuery' is undefined
jquery.animate-colors.js, line 8 character 1
SCRIPT5007: The value of the property '$' is null or undefined, not a Function object
localhost, line 100 character 2
在我尝试运行的代码下方找到(消除了不重要的代码,jquery 在其任何插件之前加载)。
<script>
$(window).load(function() {
$("#titleFirstname").delay(200).fadeIn(500);
$("#titleLastname").delay(450).fadeIn(500);
$("#enterSite").delay(650).fadeIn(500);
$("#enterSite").hover(function() {
$(this).animate({backgroundColor: 'rgba(255, 255, 255, 0.5)'}, 100)
}, function() {
$(this).animate({backgroundColor: 'rgba(255, 255, 255, 0.2)'}, 100)
});
$("#footer").delay(500).animate({bottom: '5px'});
});
</script>
<div id="primaryContainer">
<div id="titleFirstname">
TEXT
</div>
<div id="titleLastname">
TEXT
</div>
<a href="#">
<div id="enterSite">
ENTER SITE
</div>
</a>
</div>