
PHP 实例 – AJAX 与 XML
AJAX 可用来与 XML 文件进行交互式通信。
AJAX XML 实例
下面的实例将演示网页如何通过 AJAX 从 XML 文件读取信息:
实例
function showCD(str)
{
if (str==””)
{
document.getElementById(”txtHint”).innerHTML=””;
return;
}
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject(”Microsoft.XMLHTTP”);
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById(”txtHint”).innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open(”GET”,”/try/demo_source/getcd.php?q=”+str,true);
xmlhttp.send();
}
Select a CD: Bob Dylan Bee Gees Cat Stevens
{
if (str==””)
{
document.getElementById(”txtHint”).innerHTML=””;
return;
}
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject(”Microsoft.XMLHTTP”);
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById(”txtHint”).innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open(”GET”,”/try/demo_source/getcd.php?q=”+str,true);
xmlhttp.send();
}
Select a CD: Bob Dylan Bee Gees Cat Stevens


常见问题
相关文章
猜你喜欢
- PHP 安装 2015-09-06
- PHP 魔术变量 2015-09-06
- PHP E-mail 2015-09-06
- PHP MySQL Update 2015-09-06
- PHP Filter 2015-09-06
- PHP Zip 2015-09-06
- PHP 语法 2015-09-06
- PHP 命名空间 2015-09-06
- PHP Error 2015-09-06
- XML Expat Parser 2015-09-06