文档超出一屏,滚动条滚到底部时,结算条跟着正常文档流,否则结算条用fixed定位在浏览器的下方
function fnFixed(fixedbox, AddrInfor) {
var fixedclass = "fixed-bottom";
if ($(window).scrollTop() + $(window).height() +30>= $(document).height()) {
$(fixedbox).removeClass(fixedclass);
$(AddrInfor).css("margin-bottom", "0px");
} else {
$(fixedbox).addClass(fixedclass);
$(AddrInfor).css("margin-bottom", ($(fixedbox).innerHeight() + "px"));
}
}