码迷,mamicode.com
首页 > 微信 > 详细

兼容微信6.74+ios12的软键盘不回弹bug

时间:2018-12-13 10:27:42      阅读:349      评论:0      收藏:0      [点我收藏+]

标签:doc   ons   os x   cti   text   nav   evel   settime   func   

资料:

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

标签:doc   ons   os x   cti   text   nav   evel   settime   func   

原文地址:https://www.cnblogs.com/beimingbingpo/p/10112094.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!