파이어폭스 ajax 문제좀 봐주세요.

Mozilla Firefox 사용에 대한 일반적인 질문과 답을 해 주는 게시판입니다. 질문을 하기 전에 FAQ를 읽어 보시는게 도움이 될 것입니다.
Post Reply
홍현기

파이어폭스 ajax 문제좀 봐주세요.

Post by 홍현기 »

var URL = "~~~"
var gethttp = null;

if (window.ActiveXObject){
//Win e4,e5,e6용
try{
gethttp = new ActiveXObject("Msxm12.XMLHTTP");
} catch(e){
try {
gethttp = new ActiveXObject("Microsoft.XMLHTTP");
}catch(e2){
gethttp = null;
alert("사용할수 없는 브라우저 입니다.");
}
}
}else if(window.XMLHttpRequest){
//Win Mac Linux m1, f1, o8 Mac s1 Linux k3 용
gethttp = new XMLHttpRequest();
}else{
gethttp = null;
}

gethttp.open('GET', URL, false);

if(window.opera){
gethttp.onload = function(){callback(gethttp);}
}else{
gethttp.onreadystatechange = function(){
if(gethttp.readyState == 4){
callback(gethttp);
}
}
}
function callback(gethttp){
tab_items=eval(gethttp.responseText);
}
gethttp.send(null);

이렇게 코드를 작성했습니다.
ajax로 호출한 값을 tab_items 변수에 넣어서 사용하려고합니다. (tab_items는 전역변수)
익스플로러나 크롬에서는 제대로 작동이되는데
파이어 폭스에서만 작동이 안되네요.

어떻게 하는 방법이 없을까요?
Post Reply

Who is online

Users browsing this forum: Semrush [Bot] and 0 guests