var height = $(document).height(); 
alert(height); 
var heightF = height + 400;
 alert(heightF);
 $(document).height(heightF.toString() + "px"); 
alert($(document).height());第一次弹出 800 第二次弹出1200 第三次还是800  请问为什么 设置的 $(document).height(heightF.toString() + "px"); 没做用请问怎么使整个页面的高度增加400 并且滚动条向下滚动400 正好使页面显示新添加高度里的内容 谢谢大家帮忙 提前祝大家元旦快乐~~