-4

我有 index.php 之类的主页,并且我在 index.php 中包含了 sidebar.php。在 index.php 中,我有 divid=content已经加载了一些内容。在 sidebar.php 中,我有

<form id="search" method="post" action="" >
      <input type="search" name="search" id="search"> 
      <input type="submit" name="search" id="search" class="btnButton" value="Search"/>
</form> 

id=content那么当我点击提交时,如何在 div 中显示我的搜索结果?

4

2 回答 2

1

您只需从 jquery 中选择元素,然后执行方法 .ajax{}

例如

$('#contentElementId').ajax({options...})

结果加载到

<div id="contentElementId"></div>
于 2012-10-07T20:27:30.147 回答
0

使用 Jquery ajax 从主页调用 search.php。确保你引用了 jQuery 库。

//Main Page
<form id="search" method="post" action="" >
      <input type="text" name="search" id="search"> 
      <input type="submit" name="search1" id="search1" class="btnButton" value="Search"/>
</form> 

<div id="content"></div>

<script>
$(document).ready(function(){

    //jquery click event
    $("#search").live("click", function(e){

       //disable default form submit postpage
       e.preventDefault();

       //make ajax call to the search.php parsing the search textbox value as query string
       $.get("search.php?s="+$("#search").val(), function(result){

            //Result will be dumped in the div
            $("#content").html(result);

       });

   });

});

</script>



//Search PHP Script search.php
<?php

//Get the search String
$string = $_GET["s"];

//DO search query and echo it on this page.
?>
于 2012-10-07T19:23:00.017 回答