Lumière sur la Création d'un objet XMLHttpRequest

TAATJENE
XMLHttpRequest est un objet ActiveX ou Javascript qui permet d'obtenir des données au format XML, JSON, mais aussi HTML, ou encore texte simple à l'aide de requêtes HTTP.
Quel que soit le navigateur :
function createXhrObject()
{
    if (window.XMLHttpRequest)
        return new XMLHttpRequest();
 
    if (window.ActiveXObject)
    {
        var names = [
            "Msxml2.XMLHTTP.6.0",
            "Msxml2.XMLHTTP.3.0",
            "Msxml2.XMLHTTP",
            "Microsoft.XMLHTTP"
        ];
        for(var i in names)
        {
            try{ return new ActiveXObject 
(names[i]); }
            catch(e){}
        }
    }
    window.alert("Votre navigateur ne 
prend pas en charge l'objet XMLHTTPRequest.");
    return null; // non supporté
}
xhr = createXhrObject();BY TAATJENE

Comments

Popular Posts