美文网首页
解决安装FastClick导致部分手机选择需双击问题

解决安装FastClick导致部分手机选择需双击问题

作者: Lwling | 来源:发表于2020-05-20 14:31 被阅读0次

    在main.js里面写

    try{

      let versionNumber = navigator.userAgent.toLowerCase().match(/cpu iphone os (.*?) like mac os/)[1].replace(/_/g,".")

      if (!(/iphone|ipod|ipad/i.test(navigator.appVersion))||Number(versionNumber)<11) {

        FastClick.attach(document.body)

      }

    }catch(e){

      console.log(e)

    }

    相关文章

      网友评论

          本文标题:解决安装FastClick导致部分手机选择需双击问题

          本文链接:https://www.haomeiwen.com/subject/vzzgohtx.html