Html & Script

[AJAX] 1초마다 데이터 불러오기

컨텐츠 정보

본문

 

setInterval("calMethod()",1000);  

function calMethod() {

$.ajax({

cache : false,

url : '불러올파일.php',

success : function(data) {

$("#엘리먼트아이디").html(data);

}

});

}

관련자료

댓글 0
등록된 댓글이 없습니다.
Today's proverb
우리에게 남는 것은 다른 사람에게 준 것뿐이다. (긴스버그)