在做h5小游戏时发现,当在手机端,快速点击的时候,第二次点击,无响应
原因:click移动端300秒卡顿
解决方案 :
引用 加载“fastclick.js”
代码中写
$(function() { FastClick.attach(document.body); });
下载路径
tip:
触摸时间的响应顺序
1、ontouchstart 2、ontouchmove 3、ontouchend 4、onclick
解决300ms延迟的问题,也可以通过绑定ontouchstart事件,加快对事件的响应,个人更倾向于使用“fastclick.js”