Thais TA Posted January 6, 2012 Report Share Posted January 6, 2012 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> Quote Link to comment Share on other sites More sharing options...
Question
Thais TA
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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.