setInterval()为什么只执行一次 5
<html><head><scriptsrc="jquerylayout.js"type="text/javascript"></script><style>.div01...
<html>
<head>
<script src="jquerylayout.js" type="text/javascript"></script>
<style>
.div01{height:2000px;}
.div01 div{width:100px;height:1600px;border:2px solid #f00;position:absolute;left:100px;top:100px;overflow:hidden;}
img{position:relative;display:none;}
</style>
<script>
var x=0;
$(function(){
//var node=document.getElementById("div02").children;
var node1=$("#div02").children();
//$("body").append(node[0]);
//$("body").append(node1[1]);
alert(node1.nodeName);
setInterval(abc(),2000);
function abc()
{
for(var i=0;i<node1.length;i++){
alert(x+"<br>"+i+node1.length);
if(i!=x)
{alert(x);}
else
{alert(x);}
}
x=x+1;alert(x);
}
})
</script>
</head>
<body>
<div class="div01">
<div id="div02"><img src="img01.jpg"><img src="img02.jpg"></img></div>
</div>
</body>
</html> 展开
<head>
<script src="jquerylayout.js" type="text/javascript"></script>
<style>
.div01{height:2000px;}
.div01 div{width:100px;height:1600px;border:2px solid #f00;position:absolute;left:100px;top:100px;overflow:hidden;}
img{position:relative;display:none;}
</style>
<script>
var x=0;
$(function(){
//var node=document.getElementById("div02").children;
var node1=$("#div02").children();
//$("body").append(node[0]);
//$("body").append(node1[1]);
alert(node1.nodeName);
setInterval(abc(),2000);
function abc()
{
for(var i=0;i<node1.length;i++){
alert(x+"<br>"+i+node1.length);
if(i!=x)
{alert(x);}
else
{alert(x);}
}
x=x+1;alert(x);
}
})
</script>
</head>
<body>
<div class="div01">
<div id="div02"><img src="img01.jpg"><img src="img02.jpg"></img></div>
</div>
</body>
</html> 展开
2个回答
展开全部
只需要写abc,不需要写abc().后面的括号不需要。如果要加括号,需要加上引号'abc()'
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
setInterval("abc()",2000);
函数用引号引起来,第一个参数是间隔时间执行的代码片段。
函数用引号引起来,第一个参数是间隔时间执行的代码片段。
更多追问追答
追问
加引号我的浏览器不执行
追答
把函数拿到外面去,jquery的回调外面去
<script>
var x=0;
function abc(){ for(var i=0;i<node1.length;i++){ alert(x+"<br>"+i+node1.length);if(i!=x){alert(x);}else{alert(x);}}x=x+1;alert(x);}
$(function(){//var node=document.getElementById("div02").children;var node1=$("#div02").children();//$("body").append(node[0]);//$("body").append(node1[1]);alert(node1.nodeName);setInterval(abc(),2000);})</script>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询