반응형
<script>
$(function() {
timer = setInterval( function () {
$.ajax ({
"url" : "http://www.daum.net",
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>
url에는 리턴값이 있는 주소를 넣어주어야 한다.
반응형
'javascript&jquery' 카테고리의 다른 글
ajax 여러 옵션들... (0) | 2018.06.18 |
---|---|
자바스크립트 시계 (0) | 2018.06.18 |
jquery ajax 웹페이지 url 화면 결과값 가져오기 (0) | 2018.06.18 |
javascript 1초마다 자바스크립트 함수 호출하기 (0) | 2018.06.18 |
jquery 첫번째 radio 버튼 체크하기 (0) | 2018.06.18 |