我不确定从哪里开始。我有一个页面设置,可以在我的管理面板中搜索成员。我正在尝试找到一种方法来获取搜索结果,而无需在单击按钮时刷新页面。我已经有一个搜索db的文件,这是一个单独的php文件。搜索框所在的页面也是一个php文件。我花了几天谷歌搜索和阅读这里的帖子,但收效甚微。我想要的只是一个按钮,单击该按钮将在搜索框中搜索数据库中的成员名称,然后在同一页面上填充列表而不刷新页面。任何提示将非常感激。这是我在下面的搜索框代码。
<div class="search-box">
<input type="text" autocomplete="off" class="inputboox1" tabindex="1" placeholder="Search Member..." />
<div class="result" style='overflow:auto; width:190px;max-height:100px;'></div>
</div>
答案 0 :(得分:3)
您应该使用ajax。
click
个事件以下是w3schools的一个例子:
<强> 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 (this.readyState==4 && this.status==200) {
document.getElementById("livesearch").innerHTML=this.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>
<强> 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 was found
// or to the correct values
if ($hint=="") {
$response="no suggestion";
} else {
$response=$hint;
}
//output the response
echo $response;
?>
答案 1 :(得分:2)
你需要使用ajax,用jQuery尝试类似的东西:
var searchValue = $('#idOfSearchField').val();
$.ajax({
url: 'search.php',
data: {
text: searchValue
},
cache: false,
success: function(data) {
$('.result').html(data);
}
});
您甚至可以使用“keydown”事件在用户输入
时发送查询