var oHeight = $(document).height(); //屏幕当前的高度
$(window).resize(function(){
if($(document).height() < oHeight){
$("#footer").css("display","none");
}else{
$("#footer").css("display","block");
}
});
var oHeight = $(document).height(); //屏幕当前的高度
$(window).resize(function(){
if($(document).height() < oHeight){
$("#footer").css("display","none");
}else{
$("#footer").css("display","block");
}
});