여기저기서 보고 뜯어 고친 함수.
그냥 내가 다음에도 쓸 수 있도록 기록용이다.
function ajax(url,inputid){
var ajaxRequest=null
if(window.ActiveXObject) { //익스플로러일 때
try{
ajaxRequest=new ActiveXObject('Msxml2.XMLHTTP') //5.0이후
}
catch(e){
try{
ajaxRequest=new ActiveObject('Microsoft.XMLHTTP') //5.0
}
catch(e1){
ajaxRequest=null
}
}
}
else if(window.XMLHttpRequest){ //익스플로러 말구
try{
ajaxRequest=new XMLHttpRequest()
}
catch(e){
ajaxRequest=null
}
}
if(ajaxRequest==null){
alert('XMLHTTP 개체 생성 오류!')
}
ajaxRequest.open('POST',url,false)
ajaxRequest.setRequestHeader('Content-Type','application/x-www-form-urlencoded')
ajaxRequest.send('')
var strv=ajaxRequest.responseText
var tempspan=document.getElementById(inputid)
if(tempspan!=null){
tempspan.style.display=''
try{
tempspan.innerHTML=strv
}
catch(e){
tempspan.value=strv
}
}
}
'쓸만한 주저리' 카테고리의 다른 글
asp/mssql을 쓰면서 레코드셋은 되고, 파라미터는 안될 때 (0) | 2008.12.09 |
---|---|
ms-sql에서 레코드셋과 반환값을 동시에 사용할 때 주의점 (0) | 2008.11.07 |
A4에 2단으로 그림 인쇄할 수 있게 뿌리는 자바스크립트 (0) | 2008.10.22 |
문자열에서 한글과 영문만 남기기 (0) | 2008.10.22 |
select에 option 추가하기 (0) | 2008.10.22 |