我的代碼:添加小時倒計時
var mins = 30;
var secs = mins * 60;
var currentSeconds = 0;
var currentMinutes = 0;
setTimeout("Decrement("+secs+")",1000);
function Decrement(secs){
secs = parseInt(secs);
currentMinutes = Math.floor(secs/60);
currentSeconds = secs % 60;
if(currentSeconds <= 9) currentSeconds = "0" + currentSeconds;
secs--;
$("#countdown").html(currentMinutes + ":" + currentSeconds);
if(secs !== -1){
setTimeout("Decrement("+secs+")",1000);
}
if(secs == 0){
alert('');
}
}
其顯示分鐘&秒,我想在裏面加個小時。這個怎麼做。
幫助讚賞。感謝名單
你只能從這裏得到幫助。不是你的code.you有最少的開始寫作和展示我們。 –
只是谷歌這樣的腳本,嘗試實施它,如果它不工作,再次谷歌,當它仍然不工作,然後來問。或者你可以支付我,我可以爲你寫一個這樣的腳本:) – Owl
@Jay請添加代碼到你的問題,寫你已經嘗試過什麼,不工作 – Owl