function Diaporama()
{
if(window.XMLHttpRequest) // Firefox
{
alert("coucu");
xhr_object = new XMLHttpRequest();
}
else if(window.ActiveXObject) // Internet Explorer
{
alert("coucou");
xhr_object = new ActiveXObject("Microsoft.XMLHTTP");
}
else { // XMLHttpRequest non supporté par le navigateur
alert("Votre navigateur ne supporte pas les objets XMLHTTPRequest...");
}
xhr_object.open("GET","diaporama;xml",false);
xhr_object.onreadystatechange = fFuncion ;
function fFuncion() {
// Si l'état est "A point"
alert("cc");
if (oxhr_object.readyState == 4) {
// nous Accédons au document XML
oDocumento = xhr_object.responseXML.documentElement ;
// nous Alertons ce qui est numeto d'articles
alert (oDocumento.getElementsByTagName('Photo').length) ;
}
}
}
Partager