2017-10-26 9 views
1
function chat(){ 
    $.ajax({ 
     url: "chat_motor.php",cache: false,success: function(html){ 
      $("#chat").html(html); 
     }, 
    }); 
} 
setInterval (chat, 1000); 

부하 chat_motor.php 내가 다운 후이 코드를 실행하기 위해 스크롤 할 수있는 방법 후 페이지 끝으로 스크롤 부하 아약스 후 페이지 끝으로?스크롤 내가 원하는

+0

[? 사업부의 맨 아래로 스크롤]의 사용 가능한 복제 (https://stackoverflow.com/questions/270612/scroll-to-bottom-of-div) – Ozan

+0

내 대답이 당신을 위해 효과가 있었습니까? @ amir ntm –

+0

예 정말 고마워요. –

답변

1

이 작업을 수행 할 수 있습니다 :

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