gpt4 book ai didi

javascript - 获取搜索结果然后填充页面而不刷新

转载 作者:行者123 更新时间:2023-11-28 13:09:29 25 4
gpt4 key购买 nike

我不太确定从哪里开始。我有一个页面设置来在我的管理面板中搜索成员。我正在尝试找到一种在单击按钮时无需刷新页面即可获取搜索结果的方法。我已经有一个搜索数据库的文件,它是一个单独的 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>

最佳答案

您应该使用ajax .

  1. 创建 HTML 表单
  2. 在提交按钮上添加click事件
  3. 从 JavaScript 调用您的后端端点
  4. 显示响应

以下是 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;
?>

关于javascript - 获取搜索结果然后填充页面而不刷新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43885436/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com