Cordova/Phonegap 3.4.0 iOS 7.1 - Keyboard / Web View issue

前端 未结 4 1519
说谎
说谎 2020-12-28 08:41

I\'ve been struggling with this issue for over a week now and would really appreciate any help I can get. I\'ll explain the issue as I understand it but please correct if I

4条回答
  •  执念已碎
    2020-12-28 09:43

    A quick fix for me involved forcing the window to scroll back into position when the input looses focus:

    $("input").on('blur',function(){
    
     //set brief timeout to let window catch up
     setTimout(function(){
    
       //reposition at top left corner of screen
       window.scrollTo(0,0);
    
     },20); 
    
    });
    

    Hope that helps!

提交回复
热议问题