일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- oracle
- sencha touch
- Struts
- dock
- 가우스
- swingx
- PHP
- Android
- Google Map
- PLSQL
- rowspan
- JSON
- MySQL
- 선택적조인
- jQuery
- GPS
- Spring
- JDOM
- tomcat
- node.js
- MFC
- ibsheet
- Eclipse
- iBATIS
- appspresso
- WebLogic
- Ajax
- 전자정부프레임워크
- phonegap
- jsr 296
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();
}