http://onlythebestoftheweb.x10.mx/test%20search/searchbeta.html(尝试查找谷歌的例子)由于某些原因,当我开始输入时,请点击进入页面重新加载。我不知道为什么?我的代码有问题吗?我真的找不到它。您也可以查看我之前提供给您的页面代码。如果您还可以找到为什么它在另一个选项卡中打开一个页面并修复它也非常有用,谢谢:)
<?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 suggestions" if no hint were found
// or to the correct values
if ($hint=="")
{
$response="No suggestion";
}
else
{
$response=$hint;
}
//output the response
echo $response;
?>
答案 0 :(得分:0)
您应该在searchbeta.html页面中阻止“form”html元素的默认事件。 这是我在js中使用jQuery lib建议你的东西:
$(function(){
$("form").on("submit",function(e){
e.preventDefault();
});
});
不要忘记将jQuery lib连接到您的页面