頁面底部自適應瀏覽器窗口高度

if($(document.body).height() < $(window).height()){
$("#footer").css({position:'fixed',bottom:0,width:'100%'});
}
$(window).resize(function() {
if($(document.body).height() < $(window).height()){
$("#footer").css({position:'fixed',bottom:0,width:'100%'});
}else{
$("#footer").css({position:'relative'});
}
});css

相關文章
相關標籤/搜索