码迷,mamicode.com
首页 > 其他好文 > 详细

显示原生时间

时间:2020-01-15 23:08:47      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:int   time()   art   this   his   开始   tin   show   code   

让页面一开始就加载就显示时间。
解决隔1s后才显示时间这个问题

<div id="app">
    {{Showtime}}
</div>

<script>
    var vm = new Vue({
        el: "#app",
        data: {
            Showtime: ","
        },

        created() {
            // 让页面一开始就加载就显示时间。
            //解决隔1s后才显示时间这个问题
            let newtime = new Date();
            let myHover = newtime.getHours();
            let myMin = newtime.getMinutes();
            this.Showtime = myHover + ":" + myMin;

            // 让后每隔1s跟新时间
            this.runTime();
        },
        methods: {
            runTime() {
                let clearTime = setInterval(() => {
                    let newtime = new Date();
                    let myHover = newtime.getHours();
                    let myMin = newtime.getMinutes();
                    this.Showtime = myHover + ":" + myMin;
                    this.runTime();
                }, 1000)
            }
        },
    })
</script>

显示原生时间

标签:int   time()   art   this   his   开始   tin   show   code   

原文地址:https://www.cnblogs.com/IwishIcould/p/12199125.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!