美文网首页
时间戳按钮防止搜索按钮多次点击

时间戳按钮防止搜索按钮多次点击

作者: 盖子pp | 来源:发表于2020-11-19 11:06 被阅读0次

data里面定义一个时间戳

timer:new Date()

点击的时候去判断时间

clickBtn: function() {
 if (new Date() - this.timer < 1000) {
    return
 }
 this.timer = new Date()
 this.search()
}
search: function() {
......
}

相关文章

网友评论

      本文标题:时间戳按钮防止搜索按钮多次点击

      本文链接:https://www.haomeiwen.com/subject/rhmkiktx.html