我希望页脚位于初始位置的窗口下方以及调整窗口大小时。我需要在函数内部和外部声明 var 以使其工作。可以吗,或者有更好的方法吗?
$(function(){
// initial position:
var docHeight = $(window).height();
$('#footer').css('margin-top', docHeight + 'px');
// position when I resize the window:
$(window).resize(function() {
var docHeight = $(window).height();
$('#footer').css('margin-top', docHeight + 'px');
});
})
我这里有代码可以玩:http: //jsfiddle.net/dWpp5/