h5软键盘弹出顶起页面布局问题解决

窗口改变时设置定位属性,窗口再次改变回来的时候要把定位属性去掉

<script>
    var oHeight = $(document).height();
    $(window).resize(function(){
        if($(document).height() < oHeight){
            $('#footer').css("position","static");
        }else{
            $('#footer').css("position","");
        }
    })
</script>

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章