1

这是我的代码:

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 秒后运行。我怎样才能做到这一点?

4

3 回答 3

3

像这样删除()和引用:

var t = setTimeout(increment, 3000);
  • 删除()会立即/立即禁用该功能的运行,而setTimeout需要 callabck。
  • 删除引号可确保eval不在幕后使用。

var顺便说一句,使用单个关键字声明所有变量是一个好习惯,如下所示:

var t = setTimeout(increment, 3000), st;
于 2012-04-19T17:32:17.387 回答
1

尝试像这样格式化:

var t = setTimeout(function(){increment();}, 3000);
于 2012-04-19T17:31:48.733 回答
1

如果它符合您的要求,您可以简单地检查通过了多少时间。

例子:

var start = new Date();

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

    if (elapsed >= 3000)
        break;
}​
于 2012-04-19T17:36:22.910 回答