1

我有以下 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 的毫秒数更改为更大的值,例如 5000。而 RefreshElastic 从未调用过。

4

0 回答 0