基本实现功能
1,从60到0的倒计时效果
2,倒计时完毕后会有提示
先看效果图
其实实现代码很简单
<!--index.wxml--> <view class="container"> <text>倒计时: {{second}} </text> </view>
下面是相对应得js处理
//index.js // 从从60到到0倒计时 function countdown(that) { var second = that.data.second if (second == 0) { that.setData({ second: "60秒倒计时结束" }); return ; } var time = setTimeout(function(){ that.setData({ second: second - 1 }); countdown(that); } ,1000) } Page({ data: { second: 60 }, onLoad: function() { countdown(this); } });