点击事件的延迟

使用FastClick.js解决点击延迟现象,使用如下

1. 引用
https://cdn.bootcss.com/fastclick/1.0.6/fastclick.js
//jQuery中使用
 $(function(){
        FastClick.attach(document.body);
}
//纯JavaScript使用
if
('addEventListener' in document) { document.addEventListener('DOMContentLoaded', function() { FastClick.attach(document.body); }, false); }

 

posted @ 2019-09-19 19:13  番茄西红柿u  阅读(751)  评论(0编辑  收藏  举报