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 44 45 46 47 48 49 50 51
|
function getSMenu(idM)
{
if(document.selection.nomM.value != "default")
{
xhr=GetXmlHttpObject();
if (xhr==null)
{
alert ("Votre navigateur ne supporte pas AJAX!");
return;
}
var url="script/getSMenu.php?idM="+escape(idM);
xhr.onreadystatechange=stateChanged;
xhr.open("GET",url,true);
xhr.send(null);
}
else
{
alert("Veuillez choisir un menu");
}
}
function stateChanged()
{
if (xhr.readyState==1)
{
document.getElementById("nomSM").innerHTML="<select name=\"nomSM\"><option value=\"default\">Recherche en cours des sous-menus...</option></select>";
}
if (xhr.readyState==4)
{ eval(document.getElementById("nomSM").innerHTML=xhr.responseText);
}
}
function GetXmlHttpObject()
{
var xhr=null;
try
{
xhr=new XMLHttpRequest();
}
catch (e)
{
try
{
xhr=new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e)
{
xhr=new ActiveXObject("Microsoft.XMLHTTP");
}
}
return xhr;
} |
Partager