<!doctype html> 學習 < html > spa < head > .net < meta charset = "utf-8" > code < title >無標題文檔</ title >h htm < style > 對象 #box { ip width: 100%; utf-8 height: 400px; ci background: black; color: #fff; font-size:40px; line-height:400px; text-align:center; } </ style > < script > window.onload = function(){ var oBox = document.getElementById('box'); var oDate = new Date();//獲取當前時間; oDate.setFullYear(2016,11,31);//自動進位; oDate.setHours(0,0,0,0); function countDown(){ //將來時間戳減去如今時間的時間戳; var ms = oDate.getTime() - new Date().getTime(); //毫秒轉換成秒 var oSec = parseInt(ms/1000); //秒轉換整天 var oDay = parseInt(oSec/86400); //不到一天剩下的秒數; oSec%=86400; //轉換成小時 var oHour = parseInt(oSec/3600); //不到一小時剩下的秒數; oSec%=3600; //轉換成分鐘 var oMin = parseInt(oSec/60); //不到一分鐘剩下的秒數; oSec%=60; oBox.innerHTML = '距離2016年12月31日還有:'+oDay+'天'+oHour+'時'+oMin+'分'+oSec+'秒'; } countDown(); setInterval(countDown,1000); } </ script > </ head > <body > < div id = "box" >距離2016年12月31日還有:xx天xx時xx分xx秒</ div > </ body > </ html > |