1. 程式人生 > >微信6.7.4 ios12 軟鍵盤收回時頁面不回彈,導致游標位置錯亂,再次點選輸入框區域時無法focus

微信6.7.4 ios12 軟鍵盤收回時頁面不回彈,導致游標位置錯亂,再次點選輸入框區域時無法focus

https://developers.weixin.qq.com/community/develop/doc/00044ae90742f8c82fb78fcae56800

https://blog.csdn.net/qq_23370345/article/details/84757505

參考上述文章,可解決,補充多個輸入框處理方法:

   /* 問題: ios12+,微信6.7.4版本存在bug,鍵盤收回時,介面沒有恢復,底下出現空白區域,並導致游標位置錯亂,再次點選輸入框區域時無法focus
         解決方案: 當input失焦,鍵盤收回後,滾動一下頁面就可以使頁面恢復正常
         補充: 當在手機號與驗證碼之間切換輸入時,會同時觸發前輸入框的blur和後輸入框focus,這個時候觸發滾動,頁面會出現較大跳躍,因此通過inFocus 和 setTimeout 判斷,是切換input還是真正blur,真正blur的時候,再滾動頁面
      */
      //focus
      iptFocus () {
         this.errorMessage = '';
         this.inFocus = true;
      },
      //blur
      iptBlur () {
         let this_ = this;
         this_.inFocus = false;
         setTimeout(function () {
            if(this_.inFocus == false){
               // 當input 失焦時,滾動一下頁面就可以使頁面恢復正常
               this_.checkWxScroll();
            }
         },200)
      },
 
      checkWxScroll(){
         var ua = navigator.userAgent.toLowerCase();
         var u = navigator.userAgent.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/);
 
         if(ua.match(/MicroMessenger/i) == 'micromessenger'&&!!u){//在iphone 微信中
//            var osVersion  =  navigator.userAgent.match(/iPhone\sOS\s([\d\_]+)/i);
//            var  osArr = osVersion.length>=1? osVersion[1].split('_'):[];
//            var newOS = osArr.length>=2 && (versionArr[0]>11)
//            if(newOS){ //如果iphone版本號>=12
               this.temporaryRepair();
//            }
         }
      },
      temporaryRepair(){
         var currentPosition,timer;
         var speed=1;//頁面滾動距離
         timer=setInterval(function(){
            currentPosition=document.documentElement.scrollTop || document.body.scrollTop;
            currentPosition-=speed;
            window.scrollTo(0,0);//頁面向上滾動
//            currentPosition+=speed; //speed變數
//            window.scrollTo(0,currentPosition);//頁面向下滾動
            clearInterval(timer);
         },1);
      },