手机端 输入法出现 input框不在屏幕中间位置的问题

/**
* 修改点击input输入框时的位置
*/
$('.input-footer-none').on('focus',function(){
var _this=this;
setTimeout(function(){
_this.scrollIntoView();
_this.scrollIntoViewIfNeeded();
},200);
});

posted @ 2017-09-10 10:42  xzzzys  Views(647)  Comments(0Edit  收藏  举报