码迷,mamicode.com
首页 > 微信 > 详细

微信小程序时钟(xx年xx月xx日xx:xx格式)

时间:2018-07-17 20:18:03      阅读:481      评论:0      收藏:0      [点我收藏+]

标签:set   获取   new   date()   时钟   data   option   options   function   

wxml:

<view>时间:{{newTime}}</view>

js:

page({
    data:{
        newTime:‘‘
    },
    onLoad: function (options) {
    var that = this;
    //获取实时时间
    setInterval(function () {
      var nowTime = new Date();
      var hour = nowTime.getHours();
      var minutes = nowTime.getMinutes();
      if (hour < 10) {
        hour = "0" + hour;
      }
      if (minutes < 10) {
        minutes = "0" + minutes;
      }
      //console.log("nowTime:",nowTime)
      that.setData({
        newTime: nowTime.getFullYear() + ‘年‘ + (nowTime.getMonth() + 1) + ‘月‘ + nowTime.getDate() + "日" + hour + ‘:‘ + minutes
      })
    }, 200)
  },
})    

  

微信小程序时钟(xx年xx月xx日xx:xx格式)

标签:set   获取   new   date()   时钟   data   option   options   function   

原文地址:https://www.cnblogs.com/hj0711/p/9325538.html

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