此代码在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>
<script type="text/javascript" src="js/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="js/script.js"></script>
我添加的此代码位于script.js
,因为它是
答案 0 :(得分:0)
这就是我如何使用类似代码而没有任何问题:
$(function() {
$('#slideshow img:gt(0)').hide();
setInterval(function(){
$('#slideshow :first-child').fadeOut('slow')
.next('img').fadeIn('slow')
.end().appendTo('#slideshow');},
4000);
});