일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 가우스
- WebLogic
- dock
- Android
- Struts
- phonegap
- jsr 296
- sencha touch
- Spring
- PLSQL
- jQuery
- rowspan
- JSON
- oracle
- Ajax
- 전자정부프레임워크
- appspresso
- node.js
- PHP
- swingx
- Eclipse
- 선택적조인
- MySQL
- ibsheet
- JDOM
- GPS
- MFC
- iBATIS
- Google Map
- tomcat
Archives
- Today
- Total
Where The Streets Have No Name
XMLHttpRequest객체 생성하기 본문
var xmlHttp = false;
if(window.ActiveXObject){
try {
xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
}catch(e) {
try {
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}catch(e2) {
xmlHttp = false;
}
}
}
if(!xmlHttp && typeof XMLHttpRequest != 'undefined'){
xmlHttp = new XMLHttpRequest();
}
if(window.ActiveXObject){
try {
xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
}catch(e) {
try {
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}catch(e2) {
xmlHttp = false;
}
}
}
if(!xmlHttp && typeof XMLHttpRequest != 'undefined'){
xmlHttp = new XMLHttpRequest();
}