Jump to content
Fórum Script Brasil
  • 0

Ajax não abre imagem


Thais TA

Question

Ola Pessoal!

Por favor me ajudem!

Estou usando Ajax para abrir uma pagina dentro da Div!

O problema é que se eu colocar a pagina dentro de uma pasta, a imagem não aparece, so carrega os textos!

mas quando a pagina não esta dentro da pasta, a imagem aparece normalmente!

Por que?

Vai ai o codigo:

<script type="text/javascript">

function abre(arquivo){

var xmlHttp;

try {

// Firefox, Opera 8.0+, Safari

xmlHttp=new XMLHttpRequest();

}

catch (e) {

// Internet Explorer

try {

xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");

}

catch (e){

try {

xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");

}

catch (e) {

alert("Seu navegador não suporta AJAX. Atualize-o em www.getfirefox.com");

return false;

}

}

}

xmlHttp.onreadystatechange=function() {

if(xmlHttp.readyState == 1) {

document.getElementById("minhadiv").innerHTML = "Carregando...";

}

if(xmlHttp.readyState == 4) {

document.getElementById("minhadiv").innerHTML = xmlHttp.responseText;

}

}

xmlHttp.open("GET",arquivo,true);

xmlHttp.send(null);

}

</script>

<div id="menu"><a href="java script:;" onClick="abre('faq/trataplaca.html');"><img src="Ajax/tratamentoplaca.jpg" width="135" height="42" border="0" /></a></div>

<div id="minhadiv"></div>

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...