//dug 软键盘
$('input,textarea').focusout(function () {
var target = this;
// 使用定时器是为了让输入框上滑时更加自然
setTimeout(function(){
// target.scrollIntoView(true);
target.scrollIntoViewIfNeeded(true); // 推荐使用
},100);
});
$('selector').on("chang",function () {
var target = this;
// 使用定时器是为了让输入框上滑时更加自然
setTimeout(function(){
target.scrollIntoViewIfNeeded(true); // 推荐使用
},100);
});
//dug 软键盘
网友评论