我有以下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从未调用过。