Jump to content
Fórum Script Brasil
  • 0

Problemas com AJAX no IE


Peter Link

Question

Boa tarde galera, estou com um problema o ajax do meu site não funciona no internet explorer.

Uso os seguintes codigos

function GetXMLHttp() {
    if(navigator.appName == "Microsoft Internet Explorer") {
        xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
    }
    else {
        xmlHttp = new XMLHttpRequest();
    }
    return xmlHttp;
}

var xmlRequest = GetXMLHttp();


function abrirPag(valor)
{
var url = valor;

xmlRequest.onreadystatechange = mudancaEstado;
xmlRequest.open("GET",url,true);
xmlRequest.send(null);

if (xmlRequest.readyState == 1) {
document.getElementById("conteudo").innerHTML = "<img src='loader.gif'>";
}

return url;
}

function mudancaEstado(){
if (xmlRequest.readyState == 4){
document.getElementById("conteudo").innerHTML = xmlRequest.responseText;
}
}
chamo deste modo as paginas.
<a href="java script: void(0);" onclick="abrirPag('modulos/pages/cadastrar.php');">Cadastrar tarefa</a><br>
No Chrome e no firefox funciona normal agora no IE quando eu chamo uma pagina com esse ajax e dentro dessa pagina eu passo por get um id pra outra pagina deste modo não funciona.
<a onclick=\"abrirPag('processa.php?id=$id2');\">

no IE não consigo passar esse ID ele não carrega a proxima pagina.

Pelo que percebi ele so funciona a primera vez que chamo uma pagina, na segunda em diante já não carrega mais nada.

Edited by Peter Link
Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...