手机底部div被输入法顶上去解决办法

CSS样式:

 .add-not-examine-content-bottom{
            height: 1rem;
            display: flex;
            font-family: MicrosoftYaHei;
            font-size: .36rem;
            position: fixed;  //必须是fixed
            bottom: 0;
            width: 100%;
        }

js操作

<script>
    //解决输入法问题
    $(function () {
        var oHeight = $(document).height(); //当前的高度
        $(window).resize(function () {
            if ($(document).height() < oHeight) {
                $('.add-not-examine-content-bottom').hide();
            } else {
                $('.add-not-examine-content-bottom').show();
            }
        });
    });
</script>

 

posted @ 2019-09-09 10:55  万里冰封  阅读(923)  评论(0编辑  收藏  举报