第一种手机模式input框输入框收起键盘失焦后强制让页面归位
$("#indexForm input").on("blur",function(){ window.scroll(0,0);//失焦后强制让页面归位 });
第二种:区分设备
var ua = window.navigator.userAgent.toLowerCase(); if (/iphone|ipod|ipad/i.test(navigator.appVersion) && /MicroMessenger/i.test(ua)) { document.body.addEventListener('focusout', () => { window.scrollTo({ top: 0, left: 0, behavior: 'smooth' }) }) }