1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| function appelajax(ajmod, navig, v1)
{
var xhr=null;
if(window.XMLHttpRequest) {xhr=new XMLHttpRequest();}
else if(window.ActiveXObject) {try {xhr = new ActiveXObject("Msxml2.XMLHTTP");} catch (e) {try {xhr = new ActiveXObject("Microsoft.XMLHTTP");} catch (e1) {xhr = null;}}}
else {alert("Votre navigateur n\'autorise pas les appels ajax");}
if(xhr!=null)
{
xhr.open("POST", "script4.php", ajmod);
if((navig="ff")||(ajmod==true))
{
xhr.onreadystatechange = function()
{
if(xhr.readyState == 4 && xhr.status == 200) {eval(xhr.responseText);}
}
}
xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xhr.send("v1="+v1);
if((navig=="ff")&&(ajmod!=true)) {eval(xhr.responseText);}
delete xhr;
}
} |