最近微信公眾號(hào)頁面在ios12出現(xiàn)input不能喚起鍵盤問題,據(jù)了解可能還會(huì)有其他零散問題,直接解決方式ios11以上不需要引入fastclick(IOS11以上的系統(tǒng)已經(jīng)修復(fù)了點(diǎn)擊延遲300毫秒的問題)
// 解決click點(diǎn)擊300毫秒延時(shí)問題 (IOS11及以上無需處理)import FastClick from 'fastclick'
const device = navigator.userAgent.toLowerCase().match(/cpu iphone os (.*?) like mac os/)
if(!device || parseInt(device[1]) < 11) {
? FastClick.attach(document.body)
}