//防止键盘把当前输入框给挡住
$('input,textarea').on('click', function () {
console.log('2222');
var target = this;
setTimeout(function(){
target.scrollIntoViewIfNeeded();
},100);
});
//防止键盘把当前输入框给挡住
$('input,textarea').on('click', function () {
console.log('2222');
var target = this;
setTimeout(function(){
target.scrollIntoViewIfNeeded();
},100);
});
微信扫码登录