我的脚本有什么问题?当我执行它时,警报(第 2 行)给了我“100,200,300undefinedundefined”,所以当我希望它是 h1、h2 和 h3(带逗号)时,似乎 100,200,300 被解释为 h1。
function myanimation(h1,h2,h3) {
alert(h1 + h2 + h3);
$("#h1").animate({"left": h1});
$("#h2").animate({"left": h2});
}
var moves = new Array()
moves[1] = [100,200,300];
moves[2] = [300,200,100];
moves[3] = [-500,-300,0];
var i = 1;
function animatenow(){
myanimation(moves[i]);
i++;
}
$('#launch').click(function() {
setInterval(animatenow, 5000);
});