您好,登錄后才能下訂單哦!
這篇文章主要介紹vue.JS如何顯示時間,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
vue.JS顯示時間的方法:首先在data中定義一個變量,存儲時間,代碼為【data(){return {nowTime:''}}】;然后給定一個div,代碼為【<div>{{nowTime}}</div>】。
vue.JS顯示時間的方法:
1.在data中定義一個變量,存儲時間
data(){ return { nowTime:'' } },
2.給定一個div
<div>{{nowTime}}</div>
3.js部分
//顯示當(dāng)前時間(年月日時分秒) timeFormate(timeStamp) { let year = new Date(timeStamp).getFullYear(); let month =new Date(timeStamp).getMonth() + 1 < 10? "0" + (new Date(timeStamp).getMonth() + 1): new Date(timeStamp).getMonth() + 1; let date =new Date(timeStamp).getDate() < 10? "0" + new Date(timeStamp).getDate(): new Date(timeStamp).getDate(); let hh =new Date(timeStamp).getHours() < 10? "0" + new Date(timeStamp).getHours(): new Date(timeStamp).getHours(); let mm =new Date(timeStamp).getMinutes() < 10? "0" + new Date(timeStamp).getMinutes(): new Date(timeStamp).getMinutes(); let ss =new Date(timeStamp).getSeconds() < 10? "0" + new Date(timeStamp).getSeconds(): new Date(timeStamp).getSeconds(); this.nowTime = year + "年" + month + "月" + date +"日"+" "+hh+":"+mm+':'+ss ; }, nowTimes(){ this.timeFormate(new Date()); setInterval(this.nowTimes,1000); this.clear() }, clear(){ clearInterval(this.nowTimes) this.nowTimes = null; }
4.復(fù)制粘貼即可用,主要是使用定時器,每秒調(diào)用,最后清除定時器,清除函數(shù)
以上是“vue.JS如何顯示時間”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。