移动端input解决键盘问题 方案1

$('body').on('focusin', 'input, textarea', function(event) {
  if(navigator.userAgent.indexOf('Android') > -1 && ...){
   var scroll = $(this).offset();
   window.scrollTo(0, scroll);
 }
});
posted @ 2016-01-26 14:00  程序员米粉  阅读(305)  评论(0编辑  收藏  举报