0

在创建使用 PHP 和 XML 的网页方面,我相对较新,但我对我在 W3S 学校看到的 somthine 很感兴趣。我想为示例页面中显示的那个创建一个 AJAX 实时搜索,但首先我需要帮助学习如何使其运行。(http://www.w3schools.com/php/php_ajax_livesearch.asp)我复制粘贴网站中的三个代码文件,当我单击 html 文件时,我得到的只是一个空的表单框。我需要以某种方式将它与 MySql 联系起来吗?如果是这样,我该怎么做?

索引.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;
?> 

链接.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>

谢谢你的帮助

4

2 回答 2

1

我将它复制到文本管理员并保存在文档文件夹中的文件夹中。这些都不是在网络服务器中,因为我认为我不需要它,但是当它不起作用时我很惊讶。

PHP 脚本由安装了 PHP 引擎的 Web 服务器执行。要正确执行 livescript.php,首先在您的计算机上安装 Web 服务器软件或从托管服务提供商处租用托管空间。

获得 Web 服务器后,将文件安装在 Web 服务器引用的目录中(通常/home/<username>/public_html在基于 Unix 的服务器上)并通过以下方式访问您的 HTML 脚本:http: //yourdomain.com/index.html

于 2013-06-19T14:35:07.500 回答
0

似乎您正在使用简单的 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文件中的数据

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";
于 2013-06-19T14:27:26.193 回答