H5判断软键盘弹起

如果帮助到您,请轻点【喜欢】

function fn_isShowKeyboard (cb)  {
    const winHeight = window.innerHeight;
    window.onresize = function() {
        var thisHeight = window.innerHeight;
        if (winHeight - thisHeight > 50) {
            //当软键盘弹出,在这里面操作
            cb(true)
        } else {
            //当软键盘收起,在此处操作
            cb(false)
        }
    }
}

你可能感兴趣的:(H5判断软键盘弹起)