npm install fastclick -S //安装 import FastClick from 'fastclick' //引入 FastClick.attach(document.body) //初始化FastClick,在页面的DOM加载完成后 使用过程中存在的bug: 当使用FastClick 时,input框在ios上点击输入调取手机自带输入键盘不灵敏,有时候甚至点不出来。而安卓上完全没问题。这个原因是因为FastClick的点击穿透。解决方法: FastClick.prototype.onTouchEnd = function(event) { if(event.target.hasAttribute("type") && event.target.getAttribute("type") == "text") { event.preventDefault(); return false; } }
|
|