加载后滚动到页面末尾 ajax

Scroll to end of page after load ajax

function chat (){
    $.ajax({
        url: "chat_motor.php",cache: false,success: function(html){
            $("#chat").html(html);
        },
    });
}
setInterval (chat, 1000);

我想在加载后滚动到页面末尾 chat_motor.php 我如何在 运行 这段代码后向下滚动?

你可以这样做:

window.scrollTo(0,document.body.scrollHeight);