728x90
function Get_Corp_info(Left_Value,Right_Value){
createXMLHttpRequest(); //httpRequest 객체생성
httpRequest.onreadystatechange = Get_Corp_info_callback; //callback함수
httpRequest.open('GET', '/Map/CorpInfo/Get_Corp_info.asp?left='+ Left_Value +'&Right=' + Right_Value, true);
//요청을 초기화해서 HTTP 메소드 및 URL 등을 설정하는 함수 Get방식일경우 비동기 true를 명시적으로 지정
//POST나 GET,요청하는 URL,동기/비동기를 지정
httpRequest.send(); //요청(데이터)을 송신하는 함수 GET에서는 send()의 인수를 쓰지 않습니다.
}
function Get_Corp_info_callback() {
if(httpRequest.readyState == 4){
if(httpRequest.status == 200) {
var result = httpRequest.responseText;
}
}
}
반응형
'IT테크 > Web' 카테고리의 다른 글
DOMSubtreeModified을 대체할 수 있는 MutationObserver (1) | 2020.11.03 |
---|---|
input 숫자만 입력 및 자릿수 구분표시 (0) | 2014.11.17 |
Ajax 오류 메시지 관련... (1) | 2010.01.23 |
Ajax 전송(post방식) (0) | 2009.12.06 |
.net 텍스트박스에 제약조건 주기 (0) | 2009.12.06 |