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 getXhr(){
var xhr = null;
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; }
return xhr
}
function load_pret(nom_rech){
var xhr = getXhr()
xhr.onreadystatechange = function(){
if(xhr.readyState == 4 && xhr.status == 200){
for (var i=0; i<this.remb_pret.lst_tache.options.length; i++){
document.forms[0].lst_tache.options[i] = null;
}
}
}
xhr.open("POST","load_nom.php",true);
xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xhr.send('nom_creancier='+escape(document.getElementById('rech_pret').value)+'& type=load_pret');
} |
Partager