input 输入框调起软键盘后,软键盘收起,页面留白。。。
解决方法:
$("input").blur(function(){
setTimeout(() => {
const scrollHeight = document.documentElement.scrollTop || document.body.scrollTop ||0;
window.scrollTo(0, Math.max(scrollHeight -1, 0));
}, 100);
})
input 输入框调起软键盘后,软键盘收起,页面留白。。。
解决方法:
$("input").blur(function(){
setTimeout(() => {
const scrollHeight = document.documentElement.scrollTop || document.body.scrollTop ||0;
window.scrollTo(0, Math.max(scrollHeight -1, 0));
}, 100);
})
本文标题:ios微信浏览器bug
本文链接:https://www.haomeiwen.com/subject/yjfodqtx.html
网友评论