بسم الله الرحمن الرحيم
<!DOCTYPE html>
ajax
var xmlhttp ;
if(window.XMLHttpRequest)
{
xmlhttp = new XMLHttpRequest();
alert("تم انشاء الكائن");
}
else
{
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
alert(" تم انشاء الكائن");
}
xmlhttp.onreadystatechange = function(){
if(xmlhttp.readyState == 4 && xmlhttp.status == 200)
document.getElementById('jax').innerHTML= http.responseText;
}
xmlhttp.open("GET","Member.php",true);
xmlhttp.send();
التعليقات