我觉得我应该能够从谷歌搜索中找到这个,但没有,所以我会在这里问它。
我在第二个 if 语句上不断收到错误,所以我想知道是否不允许在预先存在的 if/else 语句中放置另一个 if 语句。
感谢您的关注。
function flipImages(){
currentImage = flipArray[i];
if (i == 6) {
clearInterval(interval)
}
else {
// add an opacity animation to the flip so that it is less jarring
// set at a 100ms fade in
$(currentImage).animate({
opacity: 1
}, 100, function() {
console.log(flipArray[i]);
}
// also animate in the child divs of the currentImage (which will only be text on
// the "final" div)
if ( $(currentImage).children().hasClass('final'){
$(currentImage).children().animate({
opacity: 1,
left: '+=50'
}, 500, function(){
console.log( $(currentImage).children() );
});
});
);
i++;
};
}