パワーダウン時に私のタイマーにデータベースの価値を入れようとしています。最後のタイマーの値を得ることができるので、私のプログラムは最後の値からタイマーを最初からやり直すことができません。データベースからタイマーカウントダウンを設定する方法は?
var hj= document.getElementById("jam");
var mm= document.getElementById("menit");
var ds= document.getElementById("detik");
var startDateTime = new Date();
var cookie_time = getCookie("timer_start");
var startStamp = cookie_time?cookie_time:startDateTime.getTime();
setCookie("timer_start", startStamp, 1);
var newDate = new Date();
var newStamp = newDate.getTime();
var timer;
データベースではなくクッキーを意味しますか?それがあなたの試みが示しているものですから。 –