我有一个简短的 javascript 代码,我需要在 for 循环中跳到下一个......见下文:
var y = new Array ('1', '2', '3', '4');
for (var x in y) {
callFunctionOne(y[x]);
while (condition){
condition = callFunctionTwo(y[x]);
//now want to move to the next item so
// invoke callFunctionTwo() again...
}
}
想要保持简单,所以语法可能没有错误。