美文网首页
H5兼容键盘收起编辑框失焦

H5兼容键盘收起编辑框失焦

作者: 我叫Aliya但是被占用了 | 来源:发表于2022-03-21 13:48 被阅读0次

IOS键盘弹出 不会改变webview高度,而安卓(大部分)会。

IOS键盘收起 编辑框会失焦点,而安卓(大部分)不会。

/** 修正安卓收起键盘不聚焦 */
export function fixAndroidKeyboard() {
    if (/(iPhone|iPod|iPad|Macintosh)/i.test(navigator.userAgent)) return
    if (isFixAndroid) return
    isFixAndroid = true
 
    const originWindowH = window.innerHeight
    window.addEventListener('resize', () => {
        if (originWindowH !== window.innerHeight || document.activeElement?.nodeName === 'BODY') return 
        console.info('键盘收起,主动失焦') 
        document.activeElement?.blur()
    })
}

修正后,键盘是否弹起可以监听input textarea [contenteditable="true"]的focus事件

相关文章

网友评论

      本文标题:H5兼容键盘收起编辑框失焦

      本文链接:https://www.haomeiwen.com/subject/fqftjrtx.html