关于h5软键盘挡住输入框的问题,怎么解决?var bIsAndroid = navigator.userAgent.toLowerCase().match(/android/i) == "android"; if (bIsAndroid == true) {
$('input').on('focus', function() { var height = $(this).offset().top;
$('section').animate({ scrollTop : height
}, "slow");
});
}
现在写成这样,但是页面下部分的仍然滚动不到。这是图这是代码结构滚共条在section overflow:auto
添加回答
举报
0/150
提交
取消