webapp之登陸頁面當input得到焦點時,頂部版權文本被頂上去 的解決方法

如上圖,頂部版權是用絕對定位寫的,被頂上去了,解決方法是判斷屏幕大小,改變footer的定位方式:javascript

<script>

	var oHeight = $(document).height(); //瀏覽器當前的高度   
   $(window).resize(function(){
 
        if($(document).height() < oHeight){
         
        $(".footer").css("position","static");
    }else{
         
        $(".footer").css("position","absolute");
    }
        
   });
	</script>
相關文章
相關標籤/搜索