这是我的代码:

var t = setTimeout("increment();", 1000 * 3);

var st;

function increment() {
    st = 1;
}

for (i = 0; i < 10; i++) {

    cnt = i;
    var no1 = Math.floor(Math.random() * 101);
    var no2 = Math.floor(Math.random() * 101);

    if ((i % 4) == 0) {
        crct_ans[i] = no1 + no2;
        quest[i] = no1 + " + " + no2;
    }
    else if ((i % 4) == 1) {
        crct_ans[i] = no1 - no2;
        quest[i] = no1 + " - " + no2;
    }
    else if ((i % 4) == 2) {
        crct_ans[i] = no1 * no2;
        quest[i] = no1 + " x " + no2;
    }
    else if ((i % 4) == 3) {
        crct_ans[i] = no1 / no2;
        quest[i] = no1 + " / " + no2;
    }

    ans[i] = prompt(quest[i], "");

    if (st == 1) break;
}​


如果3秒钟过去,我想停止for循环。但这是行不通的。 For循环还会在3秒后运行。我怎样才能做到这一点?

最佳答案

如果它符合您的要求,您只需检查经过了多少时间。

例:

var start = new Date();

for(i = 0; i < 10; i++){
    var end = new Date();
    var elapsed = end.getTime() - start.getTime();

    if (elapsed >= 3000)
        break;
}​

09-25 19:58