只运行最后一次setInterval

时间:2013-06-08 13:38:51

标签: javascript

我有以下javascript代码

function RefreshElastic() {
    Elastic.refresh();
}

function ShowTime() {
    var Sekarang = new Date();
    var Waktu = Sekarang.getDate() + "/" + 
                Sekarang.getMonth() + " - " + 
                Sekarang.getHours() + ":" + 
                Sekarang.getMinutes();

    $("#jam").html(Waktu);
    Elastic.refresh();
}

var IntervalElastic = setInterval(function () {
    RefreshElastic();
}, 500);

var IntervalTime = setInterval(function () {
    ShowTime();
}, 1000 * 30);

我希望有2个间隔,每个间隔都有一个调用功能。 RefreshElastic只调用了两次。 ShowTime总是每隔30秒调用一次。

为什么?

附加说明: 我将RefreshElastic的millis更改为更大的值,如5000.而RefreshElastic从未调用过。

0 个答案:

没有答案