객체를 생성할 때마다 이렇게 복잡해야 합니까? 다음 코드:
JScript 코드:
"testAjax.htm" 파일:
시도
{
// Firefox, Opera 8.0, Safari
xmlHttp=new XMLHttpRequest(); }
catch (e)
Explorer
try
{
xmlHttp=new ActiveXObject("Msxml2.XMLHTTP") xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); }
catch (e)
{
alert("귀하의 브라우저는 AJAX를 지원하지 않습니다!")
}
}
}
}
script>