728x90
반응형
function refreshPage(printID, pageUrl, delay, _method) {
var update = new Ajax.PeriodicalUpdater(
{success: printID}, // 실행이 성공하여 정상적으로 결과가 반환 되었을 때
decodeURIComponent(pageUrl), //refresh할 pgae를 uft8로 바꾼다, pageUrl+'?utf8=1'도 가능
{
method: _method, // GET/POST 방식으로 전송
//parameters: ,
frequency: delay, // refresh되는 second
decay: 1
}
);
}
refreshPage(info, data.html, 10, get) // id=info 인 곳에 data.html 를 읽어서 10초 주기로 refresh한다.
Ajax를 이용한 화면 깜빡임없는 refresh 함수
ajax javascript를 첨부해야 한다.
728x90
728x90
BIG
'Programming > Web' 카테고리의 다른 글
실전 HTML5 가이드 / 실전 웹표준 가이드 (0) | 2011.11.04 |
---|---|
Ajax 깜빡임 없는 refresh coding (0) | 2011.04.04 |
Javascript - Ajax Prototype.js (0) | 2011.03.12 |
Ajax Prototype.js 를 위한 개발자 노트(한글문서) (0) | 2011.03.03 |
div, span 태그의 차이점 (0) | 2011.03.02 |
댓글