次の更新まであと NaN時間NaN分NaN秒 です。
<!--
function showUpdateTimer() {
var resttimeSpan = document.getElementById("resttime");
resttimeSpan.innerHTML.match(/([0-9]+)時([0-9]+)分([0-9]+)秒/);
hour = parseInt(RegExp.$1);
min = parseInt(RegExp.$2);
sec = parseInt(RegExp.$3);
sec -= 1;
if (sec == -1) {
sec = 59;
min -= 1;
if (min == -1) {
min = 59;
hour -= 1;
if (hour == -1) {
return;
}
}
}
resttimeSpan.innerHTML = hour + '時間' + min + '分' + sec + '秒';
setTimeout('showUpdateTimer();', 1000);
}
setTimeout('showUpdateTimer();', 1000);
// -->