Anuluca Date : 2020-06-29 Tags : 2
❗️ 此笔记写于2020年,请注意实效性
适用移动端项目用不上双击事件
引用FastClick解决移动端大约300ms延迟的问题
1
<script src="../js/fastclick.js" type="text/javascript"></script>
1234567891011
if ('addEventListener' in document) { document.addEventListener('DOMContentLoaded', function() { FastClick.attach(document.body); }, false);}//或者jQuery$(function() { FastClick.attach(document.body);});