clearTimeout
解释:取消由 setTimeout 设置的定时器。
方法参数
Number timeoutID
timeoutID
参数说明 :要取消的定时器的 ID。
示例
扫码体验
请使用百度APP扫码
图片示例
代码示例
- 在 swan 文件中
<view class="wrap">
<button type="primary" bindtap="setTimeoutTap">setTimeout</button>
<button type="primary" bindtap="clearTimeoutTap">clearTimeout</button>
</view>
- 在 js 文件中
Page({
setTimeoutTap() {
this.timeout && clearTimeout(this.timeout);
this.timeout = setTimeout(function () {
swan.showToast({
title: 'timeout',
icon: 'none'
})
}, 5000);
},
clearTimeoutTap() {
this.timeout && clearTimeout(this.timeout);
}
});
- 在 css 文件中
.wrap {
padding: 50rpx 30rpx;
}
.wrap button {
margin-bottom: 30rpx;
}