iOS键盘收起页面未下移bug

/**
* iOS键盘收起页面未下移bug
*/
(/iphone|ipod|ipad/i.test(navigator.appVersion))&&document.addEventListener('blur', (e) => {
// 这里加了个类型判断,因为a等元素也会触发blur事件
['input', 'textarea'].includes(e.target.localName) && document.body.scrollIntoView(false)
}, true)
原文地址:https://www.cnblogs.com/caoke/p/15044027.html