Jq 移动端键盘弹出和关闭事件

移动端键盘弹出

$(document).on('focusin', function() {
    setTimeout(function() {
        UpStyle()
    }, 500)
});

移动端键盘关闭

$(document).on('focusout', function() {
    setTimeout(function() {
        UpStyle()
    }, 500)
});

 

posted @ 2021-10-30 14:08  ~且听风吟~  阅读(267)  评论(0编辑  收藏  举报