所以我有这个功能,假设对图像进行一些更改(对于我正在制作的产品组合),并且有一个按钮来更改图像,还有一个运行的计时器,每6秒钟更换一次图像然而,尽管按钮工作100%,计时器没有,我的firefox控制台告诉我这个:ReferenceError:nextone尚未定义它是......可能是什么导致这个?
我的剧本:
function nextone() {
$("#portfolio1").fadeOut(500, function() {
nextinline += 1;
if(nextinline > jpgss) { nextinline = 1; }
$("#portfolio1").attr("src","images/portfolio/" + nextinline + ".jpg")
$("#hyperlink").attr("href","portfolio.php?e=" + nextinline + "")
$("#portfolio1").fadeIn(500);
});
}
var timerr = setInterval("nextone()",6000); // Error Given on this line
答案 0 :(得分:1)
尝试做:
var timerr = setInterval(nextone,6000);
或
setInterval(function (){
nextone() }, 6000);