//----------------------------------------------
// 보통 ajax body="onload" 로 초기 실행
function onStartDom(){
// httpRequest.js SERVICE_URL <--url 상수
var yes = "y";
var param = "babo=" + yes; //파라미터는 이런식으로 2개 이상일때 "¶m=" 1개일때 ?제외
sendRequest(SERVICE_URL+"/study/ajax.jsp", param, a_callBack, "GET");
}
//ajax 콜백 메소드
function a_callBack(){
// 알지? 200 코드일때 들어오기
if(httpRequest.readyState == 4){
if(httpRequest.status == 200){
var htmlDoc = httpRequest.responseText;
// div id ajax_data_area 에 데이터 넣기
ajax_data_area.innerHTML = htmlDoc;
} else {
}
}
}
//------------------------------------------------------
'Ajax' 카테고리의 다른 글
jQuery Ajax (0) | 2011.06.23 |
---|---|
Ajax httpRequest.js (0) | 2011.06.23 |