jquery代码在firefox中正常工作但在IE中出错“对象预期错误行1 char 1”

时间:2010-09-06 04:15:53

标签: javascript jquery cross-browser

此代码在FF中正常工作但在IE中出错

object expected error line 1 char 1

jquery代码

$(function () {
    $('#header_images img:gt(0)').hide();
    setInterval(function () {
        $('#header_images :first-child').fadeOut().next('img').fadeIn().end().appendTo('#header_images');
    }, 3000);
});

这是在external.js文件中添加的。

编辑:9月7日

这是我在<head>

中添加JavaScript的方式
<script type="text/javascript" src="js/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="js/script.js"></script>

我添加的此代码位于script.js,因为它是

1 个答案:

答案 0 :(得分:0)

这就是我如何使用类似代码而没有任何问题:

$(function() {
            $('#slideshow img:gt(0)').hide();
            setInterval(function(){
              $('#slideshow :first-child').fadeOut('slow')
                 .next('img').fadeIn('slow')
                 .end().appendTo('#slideshow');}, 
              4000);
});