您好,登錄后才能下訂單哦!
這篇文章主要用實例解析jQuery如何實現倒計時功能,內容簡而易懂,希望大家可以學習一下,學習完之后肯定會有收獲的,下面讓小編帶大家一起來看看吧。
本文實例講述了jQuery實現倒計時功能。分享給大家供大家參考,具體如下:
demo代碼:
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>www.jb51.net 時間倒計時</title> </head> <body> <form id="form1" runat="server"> <div id="show"> </div> </form> <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script> <script> $(function () { TimeDown("show", 3600000) }); /* 時間倒計時 TimeDown.js */ function TimeDown(id, value) { //倒計時的總秒數 var totalSeconds = parseInt(value / 1000); //取模(余數) var modulo = totalSeconds % (60 * 60 * 24); //小時數 var hours = Math.floor(modulo / (60 * 60)); modulo = modulo % (60 * 60); //分鐘 var minutes = Math.floor(modulo / 60); //秒 var seconds = modulo % 60; hours = hours.toString().length == 1 ? '0' + hours : hours; minutes = minutes.toString().length == 1 ? '0' + minutes : minutes; seconds = seconds.toString().length == 1 ? '0' + seconds : seconds; //輸出到頁面 document.getElementById(id).innerHTML = hours + ":" + minutes + ":" + seconds; //延遲一秒執行自己 if(hours == "00" && minutes == "00" && parseInt(seconds)-1<0){ }else{ setTimeout(function () { TimeDown(id, value-1000); }, 1000) } } </script> </body> </html>
運行結果:
以上就是關于用實例解析jQuery如何實現倒計時功能的內容,如果你們有學習到知識或者技能,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。