美文网首页
安卓和ios监听键盘

安卓和ios监听键盘

作者: yiqian091 | 来源:发表于2018-12-14 10:34 被阅读0次

// // ios监听键盘弹起底部影藏

$(document).on('focusin', function () {

$('.footer').hide();

});

$(document).on('focusout', function () {

$('.footer').show();

});

// android监听键盘弹起底部影藏

var clientHeight =document.documentElement.clientHeight ||document.body.clientHeight;

$(window).on('resize', function () {

var nowClientHeight =document.documentElement.clientHeight ||document.body.clientHeight;

    if (clientHeight > nowClientHeight) {

$('.footer').hide();

    }

else {

$('.footer').show();

    }

});

相关文章

网友评论

      本文标题:安卓和ios监听键盘

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