当涉及到使用PHP和XML创建网页时,我是相对较新的,但我对我在W3S学校看到的东西很感兴趣。我想创建一个AJAX实时搜索,是显示在那里的例子页面,但首先我需要帮助学习如何使其运行(http://www.w3schools.com/php/php_ajax_livesearch.asp)我复制粘贴的三个代码文件是在网站上,当我点击html文件,我得到的是一个空表单框。我需要以某种方式链接这与MySql吗?如果是这样,我是如何做到这一点的?
index . html:
<html>
<head>
<script>
function showResult(str)
{
if (str.length==0)
{
document.getElementById("livesearch").innerHTML="";
document.getElementById("livesearch").style.border="0px";
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("livesearch").innerHTML=xmlhttp.responseText;
document.getElementById("livesearch").style.border="1px solid #A5ACB2";
}
}
xmlhttp.open("GET","livesearch.php?q="+str,true);
xmlhttp.send();
}
</script>
</head>
<body>
<form>
<input type="text" size="30" onkeyup="showResult(this.value)">
<div id="livesearch"></div>
</form>
</body>
</html>
livesearch.php:
<?php
$xmlDoc=new DOMDocument();
$xmlDoc->load("links.xml");
$x=$xmlDoc->getElementsByTagName('link');
//get the q parameter from URL
$q=$_GET["q"];
//lookup all links from the xml file if length of q>0
if (strlen($q)>0)
{
$hint="";
for($i=0; $i<($x->length); $i++)
{
$y=$x->item($i)->getElementsByTagName('title');
$z=$x->item($i)->getElementsByTagName('url');
if ($y->item(0)->nodeType==1)
{
//find a link matching the search text
if (stristr($y->item(0)->childNodes->item(0)->nodeValue,$q))
{
if ($hint=="")
{
$hint="<a href='" .
$z->item(0)->childNodes->item(0)->nodeValue .
"' target='_blank'>" .
$y->item(0)->childNodes->item(0)->nodeValue . "</a>";
}
else
{
$hint=$hint . "<br /><a href='" .
$z->item(0)->childNodes->item(0)->nodeValue .
"' target='_blank'>" .
$y->item(0)->childNodes->item(0)->nodeValue . "</a>";
}
}
}
}
}
// 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;
?>
links.xml:
<!-- Edited by XMLSpy® --><pages><link><title>HTML a tag</title><url>http://www.w3schools.com/tags/tag_a.asp</url></link><link><title>HTML br tag</title><url>http://www.w3schools.com/tags/tag_br.asp</url></link><link><title>CSS background Property</title><url>http://www.w3schools.com/cssref/css3_pr_background.asp</url></link><link><title>CSS border Property</title><url>http://www.w3schools.com/cssref/pr_border.asp</url></link><link><title>JavaScript Date Object</title><url>http://www.w3schools.com/jsref/jsref_obj_date.asp</url></link><link><title>JavaScript Array Object</title><url>http://www.w3schools.com/jsref/jsref_obj_array.asp</url></link></pages>
感谢您的帮助
我把它复制到text wrangler中,并保存在documents文件夹中的一个文件夹中。这些都不是在一个web服务器,因为我不认为我需要它,但很惊讶,当它不工作。
PHP脚本由安装了PHP引擎的web服务器执行。要正确执行livesscript .php,首先要在你的计算机上安装web服务器软件,或者从托管提供商那里租用托管空间。
当你有一个web服务器,安装你的文件在你的web服务器引用的目录(通常是基于unix的服务器/home/<username>/public_html
),并通过:http://yourdomain.com/index.html访问你的HTML脚本。
似乎你正在使用简单的javascript发送ajax请求,这是更容易与jQuery
。您不必检查浏览器,并且在jQuery中简化了许多其他事情。现在是流部分。
1。必须发生事件才能触发ajax请求。它可以是模糊,聚焦,点击,加载,鼠标移出,鼠标移出,这是你的选择。代码可能像这样;
$($btn).click(function(){
insert your ajax request here
})
表示按钮已被点击
2。调用ajax
$.ajax({
url : "phpFile.php",
data : dataYouwantToSend,
success: function() {
code to do if the call is successful
}
})
3。处理PHP文件
中的数据in phpFile.php
无论你在PHP文件中回显或打印什么,都将作为文件的响应显示。
例如如果你的PHP文件只包含
echo "hello world";
对ajax请求的响应将只是hello world
。
4。处理ajax success function
success : function (response){ //the variable in the function can be anything
alert(response);
}
上面的例子将alert hello world
整个代码看起来像这样。这是HTML文件。
<input type="text" id="clickMe" />
<script src="ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>
$(function(){
$("#clickMe").click(function(){
$.ajax({
url : "phpFile.php",
success : function(res) {
alert(res);
}
})
})
})
</script>
是PHP文件phpFile.php
echo "Hello world";