Newbie_小白
没有都对的别人,也没有全错的自己,至少要有自己的坚持,无关他人、无关外物!
//安卓弹出键盘隐藏fixed定位相关的元素(obj必须是class)
function displayFixed(obj){
    var h = document.body.scrollHeight;
    window.onresize = function(){
        if (document.body.scrollHeight < h) {
            document.getElementsByClassName(obj)[0].style.display = "none";
        }else{
            document.getElementsByClassName(obj)[0].style.display = "block";
        }
    };
}

 

posted on 2017-09-12 09:39  Newbie_小白  阅读(224)  评论(0编辑  收藏  举报