移动端 textarea、软键盘问题

376 阅读1分钟

1、textarea 问题

$('input[type="text"],textarea').on('click', function () {
     var target = this;
     setTimeout(function(){
         target.scrollIntoViewIfNeeded();
     },0);
});

2、当手机点击input,弹出软键盘,页面自动滚动上去。(解决部分机型软键盘问题)

$(document).ready(function () {
  $('body').height($('body')[0].clientHeight);
});