19-09-2007, 11:44 AM
exact sa marche nickel merci, mais y a un autre soucis now :
function ajax()
{
var xhr=null;
if (window.XMLHttpRequest) {
xhr = new XMLHttpRequest();
}
else if (window.ActiveXObject)
{
xhr = new ActiveXObject("Microsoft.XMLHTTP");
}
//on appelle le fichier reponse.txt
xhr.open("GET", "http://127.0.0.1/ajax/reponse.txt", false);
xhr.send(null);
alert(xhr.responseText);
}
je recupere le contenu du fichier reponse.txt, mais lorsque je change son contenu du .txt, ie7 m'affiche l'ancien contenu du fichier reponse.txt, sans doute un problème d'initialisation de ma variable xhr sous ie7, mais après ...
function ajax()
{
var xhr=null;
if (window.XMLHttpRequest) {
xhr = new XMLHttpRequest();
}
else if (window.ActiveXObject)
{
xhr = new ActiveXObject("Microsoft.XMLHTTP");
}
//on appelle le fichier reponse.txt
xhr.open("GET", "http://127.0.0.1/ajax/reponse.txt", false);
xhr.send(null);
alert(xhr.responseText);
}
je recupere le contenu du fichier reponse.txt, mais lorsque je change son contenu du .txt, ie7 m'affiche l'ancien contenu du fichier reponse.txt, sans doute un problème d'initialisation de ma variable xhr sous ie7, mais après ...