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)
posted @ 2021-07-22 14:41  无工时代  阅读(45)  评论(0编辑  收藏  举报