0

我的搜索结果没有显示在同一个窗口上,我希望结果显示在同一个窗口上。我发现了同样的问题,但代码与我使用的不同,所以我无法与之相关:搜索不会显示在同一页面上

场景1:

如果我输入action="search_result2.php"- 它会将结果重定向到另一页

方案 2:

如果我action=""在下面的代码中使用,它什么也不做

<html xmlns="http://www.w3.org/1999/xhtml">
<head>

<script>
$(document).ready(function(){
    $("#results").show();
});
</script>

<script type="text/javascript">
    $(document).ready(function(){
        $("#search").on('click',function() {
            var find = $('#find').val();
            var field = $('#field').val();
            $.post('search_result2.php',{find:find, field:field}, function(data){
            $("#results").html(data);
            });
            return false;
        });
    });

</script>
</head>

<body>
<div id="container" style="width:auto">
<div id="mainContent">

 <h2>Search</h2> 
 <form name="search" method="post" action="">
 Seach for: <input type="text" name="find" id="find" /> in 
 <Select NAME="field" id="field">
 <Option VALUE="testA">A</option>
 <Option VALUE="testB">B</option>
 <Option VALUE="testC">C</option>
 <Option VALUE="testD">D</option>
 </Select>
 <input type="hidden" name="searching" value="yes" />
 <input type="submit" name="search" id="search" value="Search" />
 </form>

<div id="results">
</div>
</div>
</div>
</body>
</html>

这是我的 search_result2.php:

<?php

 //This is only displayed if they have submitted the form 
if (isset($_POST['searching']) && $_POST['searching'] == "yes") 
{ 
echo "<h2>Results</h2><p>"; 

//If they did not enter a search term we give them an error 
if (empty($_POST['find'])) 
{ 
echo "<p>You forgot to enter a search term"; 
exit; 
} 

 // Otherwise we connect to our Database 
 mysql_connect("host", "username", "passw") or die(mysql_error()); 
 mysql_select_db("testdb") or die(mysql_error()); 

 // We preform a bit of filtering 
 $find = strtoupper($_POST['find']); 
 $find = strip_tags($_POST['find']); 
 $find = trim ($_POST['find']); 
 $field = trim ($_POST['field']);

 //Now we search for our search term, in the field the user specified 
 $data = mysql_query("SELECT * FROM testtable WHERE upper($field) LIKE'%$find%'"); 


 //And we display the results 
 while($result = mysql_fetch_array( $data )) 
 { 
 echo $result['testA']; 
 echo " "; 
 echo $result['testB']; 
 echo "<br>"; 
 echo $result['testC']; 
 echo "<br>"; 
 echo $result['testD']; 
 echo "<br>"; 
 echo "<br>"; 
 } 

 //This counts the number or results - and if there wasn't any it gives them a little message explaining that 
 $anymatches=mysql_num_rows($data); 
 if ($anymatches == 0) 
 { 
 echo "Sorry, but we can not find an entry to match your query<br><br>"; 
 } 

 //And we remind them what they searched for 
 echo "<b>Searched For:</b> " .$find; 
 } 
 ?>
4

1 回答 1

1

如果要在同一页面中加载,而不刷新页面,则需要发出 ajax 请求。

如果您可以重新加载页面,则 php 部分必须与原始链接位于同一“位置”。例如,如果您将该代码放在与表单相同的文件的顶部(并使用 .php 扩展名重命名),它应该可以工作(如果 php 可以在该文件夹中解释)。

于 2013-11-12T17:09:03.530 回答