function chat (){
$.ajax({
url: "chat_motor.php",cache: false,success: function(html){
$("#chat").html(html);
},
});
}
setInterval (chat, 1000);
我希望在加载chat_motor.php
后滚动到页面末尾
运行此代码后如何向下滚动?
答案 0 :(得分:1)
你可以这样做:
window.scrollTo(0,document.body.scrollHeight);