+
95
-

微信小程序拼团砍价活动倒计时精确到毫秒代码怎么写?

微信小程序拼团砍价活动倒计时精确到毫秒代码怎么写?


网友回复

+
15
-

wxml

<view>
<text>{{hour+':'+min+":"+second+":"+m_second}}</text>
</view>

js

Page({

  /**
   * 页面的初始数据
   */
  data: {
    hour: '',
    min: '',
    second: '',
    m_second: '',
    endDate2:'2018-11-30 18:00:00'
  },
  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
    var that = this;
    that.countTime()
  },
  countTime() {
    var that = this;
    var date = new Date();
    var now = dat...

点击查看剩余70%

我知道答案,我要回答