1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| function get_Xhr() {
try { return new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) {}
try { return new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) {}
try { return new XMLHttpRequest(); } catch(e) {}
alert("AJAX n'est pas supporté par votre navigateur");
return null;
}
function voirProduit(id)
{
var xhr = get_Xhr();
xhr.onreadystatechange = function()
{
if(xhr.readyState == 4)
{
document.getElementById("product").innerHTML=xhr.responseText;
}
}
appel="recup_produit.php?val2="+id;
xhr.open("GET",appel, true);
xhr.send(null);
} |
Partager