兼容微信6.74 ios12版本

时间:2018-12-14 19:50:19   收藏:0   阅读:960
//兼容微信6.74 ios12版本
var u = navigator.userAgent;
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);
	})
}

  

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!