为什么上面的代码有效而下面的代码无效?
这个有效:
var i=1
function next() {
document.getElementById("photo").src = "http://www.Example.com/images/" + jsArray[i];
if (i<jsArray.length-2)
i++
else
i=0
}
这个不起作用:
var i=1
function next() {
if (i<jsArray.length-2)
i++
document.getElementById("photo").src = "http://www.Example.com/images/" + jsArray[i];
else
i=0
document.getElementById("photo").src = "http://www.Example.com/images/" + jsArray[i];
}