上一小節使用XMLHttpRequest對象請求了一個文本文件
<html>
<head>
<title>Ajax Example</title>
<script type=
var xmlobj; //定義XMLHttpRequest對象
function CreateXMLHttpRequest()
{
if(window
//如果當前浏覽器支持ActiveXObject
{
xmlobj = new ActiveXObject(
}
else if(window
//如果當前浏覽器支持XMLHttp Request
XMLHttpRequest對象
{
xmlobj = new XMLHttpRequest();
}
}
function ReqHtml() //主程序函數
{
CreateXMLHttpRequest(); //創建對象
xmlobj
xmlobj
xmlobj
}
function StatHandler() //用於處理狀態的函數
{
if(xmlobj
//如果URL成功訪問
{
document
}
}
</script>
</head>
<body>
<p><a href=
<p><div id=
</body>
</html>
上面的代碼在HTML頁面上使用了一個層(DIV)用於顯示請求的HTML頁面
right
From:http://tw.wingwit.com/Article/program/PHP/201311/21458.html