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