JS我知道有if else语句,那么if里面套if,else里面套if什么意思?
//bindnext/previmgfunctionhookBtn(){$('#thumbsliimg').filter('#play_prev,#play_next')...
//bind next/prev img
function hookBtn(){
$('#thumbs li img').filter('#play_prev,#play_next')
.bind('click', function(){
if (timer){
clearTimeout(timer);
}
var id = this.id;
if (id == 'play_prev') {
index--;
if (index < 0) index = 6;
}else{
index++;
if (index > 6) index = 0;
}
rechange(index);
slideImage(index);
timer = window.setTimeout(auto, offset);
});
}
.bind('click', function(){
if (timer){
clearTimeout(timer);
}
这段我知道是绑定click事件,如果timer,clearTimeout(timer);表示什么意思? 展开
function hookBtn(){
$('#thumbs li img').filter('#play_prev,#play_next')
.bind('click', function(){
if (timer){
clearTimeout(timer);
}
var id = this.id;
if (id == 'play_prev') {
index--;
if (index < 0) index = 6;
}else{
index++;
if (index > 6) index = 0;
}
rechange(index);
slideImage(index);
timer = window.setTimeout(auto, offset);
});
}
.bind('click', function(){
if (timer){
clearTimeout(timer);
}
这段我知道是绑定click事件,如果timer,clearTimeout(timer);表示什么意思? 展开
3个回答
展开全部
setTimeout() 方法的返回值是一个唯一的数值,这个数值有什么用呢?如果你想要终止setTimeout() 方法的执行,那就必须使用 clearTimeout() 方法来终止,而使用这个方法的时候,系统必须知道你到底要终止的是哪一个 setTimeout() 方法 (因为你可能同时调用了好几个 setTimeout() 方法),这样 clearTimeout() 方法就需要一个参数,这个参数就是 setTimeout() 方法的返回值 (数值),用这个数值来唯一确定结束哪一个 setTimeout() 方法。
if (timer) 如果存在这个值。
if (timer) 如果存在这个值。
展开全部
这个是一样的道理吧 其实按照正常的逻辑来推理应该比较清晰的
比如你这里面 如果id == 'play_prev'为真 那么执行第一个if里面的语句 包括下面的if (index < 0) index = 6;
如果id == 'play_prev'为假 那么执行else里面的语句 包括下面的 if (index > 6) index = 0;
比如你这里面 如果id == 'play_prev'为真 那么执行第一个if里面的语句 包括下面的if (index < 0) index = 6;
如果id == 'play_prev'为假 那么执行else里面的语句 包括下面的 if (index > 6) index = 0;
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
else里面套if跟if、else是一样的,也是做判断
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询