jonlon - 2010/3/11 21:24:00
页面内容不满屏时能不能把页脚定在页面底部啊?
网上有一段JS代码,不知道该放在哪里~
xiyou - 2010/3/12 9:30:00
直接插入到基本信息设置网站顶部信息或网站底部信息就可以
jonlon - 2010/3/12 19:41:00
function test(){
var infoHeight = document.getElementById("info").scrollHeight;
var bottomHeight = document.getElementById("bottom").scrollHeight;
var allHeight = document.documentElement.clientHeight;
var bottom = document.getElementById("bottom");
if((infoHeight + bottomHeight) < allHeight){
bottom.style.position = "absolute";
bottom.style.bottom = "0";
}else{
bottom.style.position = "";
bottom.style.bottom = "";
}
setTimeout(function(){test();},10);
}
test();
jonlon - 2010/3/12 19:41:00
("info")和("bottom")应该怎处理??
jonlon - 2010/3/13 19:30:00
版主在吗?