2013-06-27 153 views
0

我的代碼:添加小時倒計時

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(''); } }

其顯示分鐘&秒,我想在裏面加個小時。這個怎麼做。

幫助讚賞。感謝名單

+0

你只能從這裏得到幫助。不是你的code.you有最少的開始寫作和展示我們。 –

+0

只是谷歌這樣的腳本,嘗試實施它,如果它不工作,再次谷歌,當它仍然不工作,然後來問。或者你可以支付我,我可以爲你寫一個這樣的腳本:) – Owl

+0

@Jay請添加代碼到你的問題,寫你已經嘗試過什麼,不工作 – Owl

回答

0

這裏是一個倒數計時器爲您

http://keith-wood.name/countdown.html

它小時分和秒。 如果您閱讀文檔,您可以將日期設置爲倒計時的位置,並且難以使用。簡單的用法:但是當你想要更多的設置時,我建議閱讀整個文檔

$(selector).countdown()