监听键盘弹起收起的状态,然后自己滚动一下。
isIphone () {
return !!u.match(/(i[^;]+;( U;)? CPU.+Mac OS X/)
}
document.body.addEventListener('focusout', () => {
if (isIphone()) {
setTimeout(() => {
document.body.scrollTop = document.body.scrollHeight
}, 100)
}
})
document.body.addEventListener('focusin', () => {
if (isIphone()) {
setTimeout(() => {
document.body.scrollTop = document.body.scrollHeight
}, 100)
}
})