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
|
function xhr()
{
var xhr;
try { xhr = new ActiveXObject('Msxml2.XMLHTTP'); }
catch (e)
{
try { xhr = new ActiveXObject('Microsoft.XMLHTTP'); }
catch (e2)
{
try { xhr = new XMLHttpRequest(); }
catch (e3) { xhr = false; }
}
}
return xhr;
}
function ajax(url,params,callback){
xhr = xhr();
xhr.onreadystatechange = function()
{
if(xhr.readyState == 4)
{
if(xhr.status == 200)
callback(responseText);
}
};
xhr.open( "POST", url, true);
xhr.send(params);
}
function auth(boo){
if(boo)
alert('vous êtes connecté');
}
function check(){
var login = document.forms['formulaire1'].elements['login'].value;
var pass = document.forms['formulaire1'].elements['pass'].value;
ajax("http://www.monsite.com/test_login.php","login="+login+"&pass="+pass,auth);
} |
Partager