1
function loadxmldoc()
{
var xmlhttp;
if (window.XMLHttpRequest)
{
xmlhttp=new XMLHttpRequest();
}
else
{
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","ajax_info.php?fname=sakthi&lname=karthiga",false);
xmlhttp.send();
}
ajax_info.php初學者 - AJAX虛假和真實的區別?
<?php
echo("hello"."<br>".$_GET["fname"].$_GET["lname"]);
?>
在此代碼我改變爲FALSE阿賈克斯狀態
但還是老樣子工作一樣TRUE u能告訴什麼/黑白真假的區別?如果我改變錯誤什麼將在服務器端
此鏈接可能對未來有所幫助:https://developer.mozilla.org/en-US/docs/DOM/XMLHttpRequest?redirectlocale=zh-CN&redirectslug=XMLHttpRequest#open%28%29 – str