兼容微信6.74+ios12的软键盘不回弹bug
Posted 森海轮回
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了兼容微信6.74+ios12的软键盘不回弹bug相关的知识,希望对你有一定的参考价值。
资料:
https://developers.weixin.qq.com/community/develop/doc/00044ae90742f8c82fb78fcae56800
//兼容微信6.74 ios12版本
$("input,textarea,select").blur(function(){
setTimeout(() => {
const scrollHeight = document.documentElement.scrollTop || document.body.scrollTop || 0;
window.scrollTo(0, Math.max(scrollHeight - 1, 0));
}, 50);
})
//兼容微信6.74 ios12版本
var u = navigator.userAgent;
var isandroid = u.indexOf(‘Android‘) > -1 || u.indexOf(‘Adr‘) > -1; //android终端
var isiOS = !!u.match(/(i[^;]+;( U;)? CPU.+Mac OS X/);
if(isiOS){
$("input,textarea,select").blur(function(){
setTimeout(() => {
const scrollHeight = document.documentElement.scrollTop || document.body.scrollTop || 0;
window.scrollTo(0, Math.max(scrollHeight - 1, 0));
}, 50);
})
}
以上是关于兼容微信6.74+ios12的软键盘不回弹bug的主要内容,如果未能解决你的问题,请参考以下文章
h5 解决ios端输入框失去焦点后页面不回弹或者底部留白问题