本文主要是介绍让底部页面始终居于底部 【jquery】,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
/*让底部页面始终居于底部*/
$(function() {
var Height1 = $('body').children().eq('1').height();
var Height2 = $('body').children().eq('2').height();
var Height3 = $('body').children().eq('3').height();
var Height4 = $('footer').height();
bottomHeight();
function bottomHeight() {
var goHeight = Height1 + Height2 + Height3;
var windowHeight = $(window).height();
if (goHeight < windowHeight) {
$('footer').css({
"position": "relative",
"top": "30px"
});
}
}
});
这篇关于让底部页面始终居于底部 【jquery】的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!