解決因使用fastclick 導致的iOS 機型點擊輸入框不能聚焦,或者點擊多次才能聚焦的問題
引入 fastclick 並重寫其 focus 方法
1 import FastClick from 'fastclick' 2 // 修復點擊300ms延遲 3 if ('addEventListener' in document) { 4 document.addEventListener('DOMContentLoaded', () => { 5 FastClick.attach(document.body) 6 }, false) 7 } 8 FastClick.prototype.focus = function(targetElement) { 9 targetElement.focus(); 10 };
以上