function realtime_alarmCheck()
{
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
var param = "bbcode="+document.ugoPopupCheckForm.bbcode
+ "&jscode="+document.ugoPopupCheckForm.jscode
+ "&tncode="+document.ugoPopupCheckForm.tncode;
xmlhttp.open("POST","/com/gt/tunnel_realtime_alarm_check.jsp", false); //마지막 파라미터가 TRUE 면 동기식, FALSE면 비동기식
xmlhttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
xmlhttp.onreadystatechange = function() {
if(xmlhttp.readyState == 0)
{//UNINITIALIZED
}
else if(xmlhttp.readyState == 1)
{//LOADING
}
else if(xmlhttp.readyState == 2)
{//LOADED
}
else if(xmlhttp.readyState == 3)
{//INTERACTIVE
}
else if(xmlhttp.readyState == 4)
{//COMPLETE
if(xmlhttp.status == 200)//200 = 정상처리
{
//SUBMIT 대상 화면의 내용을 받아 온다.
if(xmlhttp.responseText)
{
real_ugo_popup();
}
}
}
}
xmlhttp.send(param);
}
//특정 시간 마다 정보 호출이 필요할 경우
//실시간 경보 조회 함수 호출
s-tInterval("realtime_alarmCheck();", 5000);
'Carpe Programming > javascript' 카테고리의 다른 글
[jQuery] jQuery Form Plugin을 이용한 File Upload (0) | 2011.07.15 |
---|---|
[jQuery] jQuery를 이용한 검색 자동완성 기능 (0) | 2011.07.15 |
[JavaScript] iframe에 onclick 적용 (0) | 2011.07.15 |
팝업창 띄울때 띄워져 있으면 안띄우기 (0) | 2011.07.15 |
indexOf / startWith (0) | 2009.11.04 |