時間從未停止過瓢谢,人生從未平淡過畸写。時間每分每秒的走著,生命也是如此氓扛。
<input type="text" placeholder="請輸入時間">
<button>開始</button>
<h2></h2>
<script>
var h = document.getElementsByTagName('h2')[0];
//倒計時方法
function countDown(stoptimestr) {
//獲取當(dāng)前時間
var nowTime = new Date();
//獲取截止時間
var stopTime = new Date(stoptimestr);
console.log(stopTime.toLocaleString());
//獲取毫秒數(shù)枯芬,并進(jìn)行相減,求出時間差
var mistiming = stopTime.getTime() - nowTime.getTime();
//根據(jù)時間差 轉(zhuǎn)換天數(shù)千所,時分秒
var days = Math.floor(mistiming / 1000 / 60 / 60 / 24);
var hours = Math.floor(mistiming / 1000 / 60 / 60 % 24);
var minutes = Math.floor(mistiming / 1000 / 60 % 60);
var seconds = Math.floor(mistiming / 1000 % 60);
days < 10 ? days = '0' + days : days;
hours < 10 ? hours = '0' + hours : hours;
minutes < 10 ? minutes = '0' + minutes : minutes;
seconds < 10 ? seconds = '0' + seconds : seconds;
var rels = mistiming > 0 ? `${days}天${hours}時${minutes}分${seconds}秒` : '請重新輸入時間';
return rels;
}
// 啟動倒計時
setInterval(function () {
h.innerHTML = countDown('2020-07-30 00:00:00');
}, 1000)
2020年7月畢業(yè)淫痰,離畢業(yè)還有還有一年啊;鸲怼4”丁胎挎!