微信小程序时钟(xx年xx月xx日xx:xx格式)
时间:2018-07-17 20:18:03
收藏:0
阅读:481
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)
},
})
评论(0)