1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
var xhr = null;
var count = Math.random();
function getXhr(){
if(window.XMLHttpRequest)xhr = new XMLHttpRequest();
else if(window.ActiveXObject){
try{
xhr = new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e) {
xhr = new ActiveXObject("Microsoft.XMLHTTP");
}
}
else {
alert("Votre navigateur ne supporte pas les objets XMLHTTPRequest...");
xhr = false;
}
}
function showPage(uri_end){
var mesScripts = document.getElementById("content").getElementsByTagName("script");
for (var i=0; i<mesScripts.length; i++) {
eval(mesScripts[i].innerHTML);
}
if (uri_end==null){
uri_end = 'accueil';
}
getXhr();
xhr.onreadystatechange = function(){
if(xhr.readyState < 4){
document.getElementById('chargement').innerHTML="<img style='background-color:white; border: 1px solid #158398' src='./ressources/img/load.gif' />";
}
if(xhr.readyState == 4 && xhr.status == 200){
document.getElementById('chargement').innerHTML="";
document.getElementById('content').innerHTML=xhr.responseText;
}
}
xhr.open("POST",'aff_page.php?page='+uri_end,true);
xhr.setRequestHeader("X-Requested-With", "XMLHttpRequest");
xhr.send(null);
} |