renan23 Posted January 6, 2012 Report Share Posted January 6, 2012 pessoal assim ó tenho este codigo para abrir o conteudo em uma div ta funcionando só q no chrome não funciona :S alguém pode me ajudar ?? valeu !! <head> <script type="text/javascript"> var xmlhttp = getXmlHttpRequest(); function getXmlHttpRequest() { if (window.XMLHttpRequest) { return new XMLHttpRequest(); } else if (window.ActiveXObject) { try { return new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { return new ActiveXObject("Microsoft.XMLHTTP"); } catch (e){} } } } function requisicao(_strNomePagina) { xmlhttp.open("GET", _strNomePagina, true); xmlhttp.setRequestHeader("Content-Type", "text/html; charset=iso-8859-1"); xmlhttp.setRequestHeader("Cache-Control", "no-store, no-cache, must-revalidate"); xmlhttp.setRequestHeader("Cache-Control", "post-check=0, pre-check=0"); xmlhttp.setRequestHeader("Pragma", "no-cache"); xmlhttp.onreadystatechange = function() { if (xmlhttp.readyState==4) { document.getElementById('conteudo').innerHTML = xmlhttp.responseText; } } xmlhttp.send(null); } </script> </head> <body> <a href="java script: requisicao('arquivo.html');">:: Pagina</a> <a href="java script: requisicao('arquivo2.html');">:: Pagina</a> <div id="conteudo"> e aeeeeeeee </div> Quote Link to comment Share on other sites More sharing options...
0 Willian Gustavo Veiga Posted January 8, 2012 Report Share Posted January 8, 2012 Erros no Console? Quais? "Não funciona" não ajuda.Um abraço. Quote Link to comment Share on other sites More sharing options...
0 renan23 Posted January 9, 2012 Author Report Share Posted January 9, 2012 é q assim esse codigo eu uso como se fosse um iframe sabe ai ele abre todas as paginas do site em uma div chamada conteudo só q assim no FF IE ele abre e aparece o conteudo da pagina mas no chrome ele abre a div conteudo mas fica tudo em branco ele não mostra o conteudo dentro da div não sei se consegui explica direito mas se puder ajudar agradeço ^^ Quote Link to comment Share on other sites More sharing options...
0 fiote Posted January 9, 2012 Report Share Posted January 9, 2012 Erros no Console? Quote Link to comment Share on other sites More sharing options...
0 renan23 Posted January 9, 2012 Author Report Share Posted January 9, 2012 é assim o não aparece o conteudo abre a div mas fica em brando ai disseram pra aperta ctrl = shift = j no chrome ai aparece esse erro :XMLHttpRequest cannot load file:///C:/Users/Renan/Desktop/versatil/home.html. Origin null is not allowed by Access-Control-Allow-Origin. Quote Link to comment Share on other sites More sharing options...
0 Willian Gustavo Veiga Posted January 12, 2012 Report Share Posted January 12, 2012 Veja este link.Um abraço. Quote Link to comment Share on other sites More sharing options...
Question
renan23
pessoal assim ó tenho este codigo para abrir o conteudo em uma div ta funcionando só q no chrome não funciona :S
alguém pode me ajudar ?? valeu !!
Link to comment
Share on other sites
5 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.