AJax 請求
在下面的 AJax 例子中,我們將演示當用戶向 web 表單中輸入數據時,網頁如何與在線的 web 服務器進行通信。
此例包括三張頁面:
Html 表單
這是 HTML 表單。它包含一個簡單的 Html 表單和指向 JavaScript 的鏈接:
<Html>
<head>
<script src="clIEnthint.JS"></script>
</head>
<body>
<form>
First Name:
<input type="text" id="txt1"
onkeyup="showHint(this.value)">
</form>
<p>Suggestions: <span id="txtHint"></span></p>
</body>
</Html>
例子解釋 - Html 表單
正如您看到的,上面的 HTML 頁面含有一個簡單的 Html 表單,其中帶有一個名為 "txt1" 的輸入字段。
該表單是這樣工作的:
JavaScript
JavaScript 代碼存儲在 "clIEnthint.JS" 文件中,它被鏈接到 Html 文檔:
var XMLHttp
function showHint(str)
{
if (str.length==0)
{
document.getElementById("txtHint").innerHtml=""
return
}
xmlHttp=GetXMLHttpObject()
if (XMLHttp==null)
{
alert ("Browser does not support HTTP Request")
return
}
var url="gethint.PHP"
url=url+"?q="+str
url=url+"&sid="+Math.random()
XMLHttp.onreadystatechange=stateChanged
XMLHttp.open("GET",url,true)
XMLHttp.send(null)
}
function stateChanged()
{
if (xmlHttp.readyState==4 || XMLHttp.readyState=="complete")
{
document.getElementById("txtHint").innerHtml=XMLHttp.responseText
}
}
function GetXMLHttpObject()
{
var XMLHttp=null;
try
{
// Firefox, Opera 8.0+, Safari
xmlHttp=new XMLHttpRequest();
}
catch (e)
{
// Internet Explorer
try
{
xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e)
{
xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
}
}
return XMLHttp;
}
例子解釋:
showHint() 函數
每當在輸入域中輸入一個字符,該函數就會被執行一次。
如果文本框中有內容 (str.length > 0),該函數這樣執行:
如果輸入域為空,則函數簡單地清空 txtHint 占位符的內容。
stateChanged() 函數
每當 XMLHTTP 對象的狀態發生改變,則執行該函數。
在狀態變成 4 (或 "complete")時,用響應文本填充 txtHint 占位符 txtHint 的內容。
GetXMLHttpObject() 函數
AJax 應用程序只能運行在完整支持 XML 的 web 浏覽器中。
上面的代碼調用了名為 GetXMLHttpObject() 的函數。
該函數的作用是解決為不同浏覽器創建不同 XMLHTTP 對象的問題。
PHP 頁面
被 JavaScript 代碼調用的服務器頁面是一個名為 "gethint.PHP" 的簡單服務器頁面。
"gethint.PHP" 中的代碼會檢查名字數組,然後向客戶端返回對應的名字:
<?PHP
// Fill up array with names
$a[]="Anna";
$a[]="Brittany";
$a[]="Cinderella";
$a[]="Diana";
$a[]="Eva";
$a[]="Fiona";
$a[]="Gunda";
$a[]="Hege";
$a[]="Inga";
$a[]="Johanna";
$a[]="Kitty";
$a[]="Linda";
$a[]="Nina";
$a[]="Ophelia";
$a[]="Petunia";
$a[]="Amanda";
$a[]="Raquel";
$a[]="Cindy";
$a[]="Doris";
$a[]="Eve";
$a[]="Evita";
$a[]="Sunniva";
$a[]="Tove";
$a[]="Unni";
$a[]="Violet";
$a[]="Liza";
$a[]="Elizabeth";
$a[]="Ellen";
$a[]="Wenche";
$a[]="Vicky";
//get the q parameter from URL
$q=$_GET["q"];
//lookup all hints from array if length of q>0
if (strlen($q) > 0)
{
$hint="";
for($i=0; $i<count($a); $i++)
{
if (strtolower($q)==strtolower(substr($a[$i],0,strlen($q))))
{
if ($hint=="")
{
$hint=$a[$i];
}
else
{
$hint=$hint." , ".$a[$i];
}
}
}
}
//Set output to "no suggestion" if no hint were found
//or to the correct values
if ($hint == "")
{
$response="no suggestion";
}
else
{
$response=$hint;
}
//output the response
echo $response;
?>
如果存在從 JavaScript 送來的文本 (strlen($q) > 0),則: