ajax 1초마다 한번씩 데이터 가져오기
페이지 정보
작성자 운영자쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 댓글 0건 조회 1,570회 작성일 22-03-26 16:53본문
<script>
$(function() {
timer = setInterval( function () {
$.ajax ({
cache : false,
success : function (html) {
console.log(html);
$("#clicks").text(html);
}
});
}, 1000);
});
</script>
<div style="border:1px solid #dedede; width:600px; height:250px; line-height:250px; color:#666;font-size:100px; text-align:center;" id="clicks">
</div>
댓글목록
등록된 댓글이 없습니다.