主頁(yè) > 知識(shí)庫(kù) > thinkPHP+mysql+ajax實(shí)現(xiàn)的仿百度一下即時(shí)搜索效果詳解

thinkPHP+mysql+ajax實(shí)現(xiàn)的仿百度一下即時(shí)搜索效果詳解

熱門標(biāo)簽:廣州防封卡外呼系統(tǒng)多少錢一個(gè)月 廣東地市地圖標(biāo)注 高德地圖標(biāo)注家 外呼系統(tǒng)撥打暫時(shí)無(wú)法接通 仁和怎么申請(qǐng)400開頭的電話 江西手機(jī)自動(dòng)外呼防封系統(tǒng)是什么 怎么向銷售公司推銷外呼系統(tǒng) 哪里辦理400電話 長(zhǎng)春人工外呼系統(tǒng)服務(wù)商

本文實(shí)例講述了thinkPHP+mysql+ajax實(shí)現(xiàn)的仿百度一下即時(shí)搜索效果。分享給大家供大家參考,具體如下:

用過百度搜索的人應(yīng)該都知道這個(gè)效果,今天我用ThinkPHP+Mysql+Ajax來(lái)實(shí)現(xiàn)這樣的一個(gè)效果,首先我把所有的代碼都先給大家,最后再來(lái)講解。

  • 百度即時(shí)搜索效果圖

  • 運(yùn)行效果圖

  • 數(shù)據(jù)庫(kù)截圖

城市表

學(xué)校表

  • 控制層代碼(SchoolController.class.php)
?php
namespace Wechat\Controller;
use Think\Controller;
/**
 * 學(xué)校模塊控制層
 */
class SchoolController extends Controller {
  //學(xué)校選擇頁(yè)面
  public function index(){
    $County = D("County");
    $School = D("School");
    //獲取所有的省份列表
    $cityList = $County->where("pid = 0")->order("sort desc")->select();
    //遍歷省份數(shù)據(jù),獲取二級(jí)城市列表
    foreach ($cityList as $key => $value) {
      $countyList[] = $County->where("pid = ".$value['id'])->order("sort desc")->select();
    }
    //如果url傳過來(lái)省級(jí)編號(hào),就保存,否則就默認(rèn)山東為要顯示的省份
    if(!empty($_GET['cityid'])){
      $cityid = $_GET['cityid'];
    }else{
      //6號(hào)代碼山東的城市編號(hào)
      $cityid = 6;
    }
    //查詢此省份編號(hào)中的所有城市
    $countyList = $County->where("pid = ".$cityid)->order("sort desc")->select();
    //查詢城市中的所有學(xué)校
    foreach ($countyList as $key => $value) {
      $countyList[$key]['school'] = $School->where("cid = ".$value['id'])->select();
    }
    //給視圖層賦值
    $this->assign("cityList",$cityList);
    $this->assign("countyList",$countyList);
    //顯示視圖層
    $this->display();
  }
  //根據(jù)關(guān)鍵字進(jìn)行查找
  public function get_school_by_key(){
    $key = $_POST['key'];//獲取關(guān)鍵字
    if(empty($key))
      $this->ajaxReturn(array("flag"=>0,"data"=>array())); //如果關(guān)鍵字為空,就返回空數(shù)組
    //查詢學(xué)校
    $School = D("School");
    $where['name'] = array("like","%".$key."%");
    $schoolList = $School->where($where)->limit("6")->select();
    if(empty($schoolList))
      $this->ajaxReturn(array("flag"=>0,"data"=>array()));//如果數(shù)據(jù)為空,也返回空數(shù)組
    $this->ajaxReturn(array("flag"=>1,"data"=>$schoolList));//返回學(xué)校列表
  }
}

  • 視圖層代碼(index.html)
!DOCTYPE HTML>
html>
head>
meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
meta http-equiv="Content-Type" content="text/html; charset=utf-8">
link rel="stylesheet"  href="__PUBLIC__/Wechat/css/choose.css?20150819" rel="external nofollow" type="text/css">
script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js" type="text/javascript">/script>
title>選擇所在學(xué)校/title>
/head>
body style="overflow:-Scroll;overflow-x:hidden">
div class="title"> 請(qǐng)選擇您所在學(xué)校 /div>
div class="search-w">
 input class="search" type="text" name="k"  placeholder="快速搜索您所在的城市或?qū)W校" value="">
 !--需要?jiǎng)討B(tài)顯示的數(shù)據(jù)列表框-->
 ul class="list">
 /ul>
/div>
div class="wraper">
 div class="center">
  div class="left">
   ul>
    !--顯示所有的省份-->
    foreach name="cityList" item="city">
      li id="box{$city.id}">a href="__APP__/School/index/cityid/{$city.id}" rel="external nofollow" >{$city.name}/a>/li>
    /foreach>
   /ul>
  /div>
  div class="right">
   !--顯示所有城市 -->
   foreach name="countyList" item="county">
    ul>
    p>{$county.name}/p>
    !--顯示城市里面的學(xué)校-->
    foreach name="county['school']" item="school">
      li>a href="__APP__/Dormitory/index/sid/{$school.sid}" rel="external nofollow" >{$school.name}/a>/li>
    /foreach>
    /ul>
   /foreach>
  /div>
 /div>
/div>
/body>
script>
$(function(){
 //響應(yīng)鍵盤事件
 $('.search-w input[name="k"]').keyup(function(){
  //發(fā)送post請(qǐng)求,地址為控制器中的get_school_by_key方法,參數(shù)為輸入的內(nèi)容
  $.post('__APP__/School/get_school_by_key',{'key':$(this).val()},function(data){
      var data = eval('('+data+')');
      //如果數(shù)據(jù)不為空
      if(data.flag){
       //清空ul中的數(shù)據(jù)并顯示
       $(".list").empty();
       $('.list').css('display','block');
       // 循壞遍歷返回值,并添加到li中
       $(data.data).each(function(position){
        $(".list").append("li>a href='__APP__/Dormitory/index/sid/"+data.data[position].sid+"'>"+data.data[position].name+"/a>/li>");
       });
     }else{
      //不顯示
      $('.list').css('display','none');
     }
   });
 });
});
/script>
/html>

  • css樣式表(choose.css)
/* CSS Document */
* {
  margin:0;
  padding:0;
}
body {
  background:#FBFBFB;
  width:100%;
}
ul {
  list-style:none;
}
a {
  text-decoration:none;
}
.right ul li a:active {
  color:#FF5C57;
}
.left ul li a:active {
  color:#FF5C57;
}
.right ul li a:hover {
  color:#FF5C57;
}
.left ul li a:hover {
  color:#FF5C57;
}
.title {
  background:#C32D32;
  height:50px;
  width:100%;
  line-height:50px;
  text-align:center;
  font-family:Arial, Helvetica, sans-serif;
  font-size:18px;
  color:#FFF;
}
.search-w {
  text-align:center;
  width:100%;
  height:50px;
}
.search {
  width:95%;
  height:30px;
  text-align:center;
  margin-top:1%;
  border:#ccc 1px solid;
  font-size:14px;
  background: #FFF url(image/s1.png) no-repeat 15% 5px;
}
.list {
  width:95%;
  text-align:left;
  border:#ccc 1px solid;
  font-size:14px;
  margin:0 auto;
  background:#FFF;
   position:relative;
}
.list li {
  height:35px;
  width:100%;
  line-height:35px;
  border-bottom:#DFDFDF 1px solid;
}
.list li a{color:#939393; width:100%; height:100%; display:block;}
.list li a:hover {
  color:#ff5c57;
}
.wraper{
  width: 100%;
  height:100%;
}
.center{
  width:95%;
  height:100%;
}
.left {
  margin-top:5px;
  width:19.9%;
  background:#FBFBFB;
  float:left;
  border-top:#DFDFDF 1px solid;
  overflow:hidden;
}
.left ul {
  width:100%;
  height:100%;
}
.left ul li {
  height:60px;
  line-height:60px;
  border-bottom:#F1F1F1 1px solid;
  text-align:center;
  border-right:1px solid #C0C0C0;
}
.left ul li a {
  color:#939393;
  font-weight: bold;
  height:100%;
  width:100%;
  display:block;
}
.right {
  margin-top:5px;
  width:80%;
  background:#FFF;
  float:left;
  border-top:#DFDFDF 1px solid;
}
.right ul li a {
  padding-left: 5%;
  color:#939393;
  height:100%;
  width:95%;
  display:block;
}
.right ul {
  width:100%;
  height:100%;
}
.right ul li {
  height:45px;
  line-height:45px;
  width:100%;
  text-align:left;
  border-bottom:#E8E8E8 1px solid;
  color:#7C7C7C;
}
.right ul p{
  height:45px;
  line-height:45px;
  width:100%;
  text-align:center;
  border-bottom:#E8E8E8 1px solid;
  color:#939393;
  font-weight: bold;
  font-size: 18px;
}

至此,所有東西全部公布完畢,我們來(lái)分析一下,首先在控制層的index方法中獲取所有的省份,城市和學(xué)校數(shù)據(jù),用于視圖層顯示。此外在控制層中還有一個(gè)方法get_school_by_key,這個(gè)方法是根據(jù)關(guān)鍵字來(lái)查找學(xué)校信息,并返回Json數(shù)據(jù)。在視圖層index.html文件中,我們利用Jquery來(lái)響應(yīng)用戶輸入的事件,然后利用Jquery操作Ajax的方式來(lái)從服務(wù)器端獲取與關(guān)鍵字匹配的學(xué)校數(shù)據(jù),并用動(dòng)態(tài)添加li的方式來(lái)顯示到ul中。

更多關(guān)于thinkPHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《ThinkPHP入門教程》、《thinkPHP模板操作技巧總結(jié)》、《ThinkPHP常用方法總結(jié)》、《codeigniter入門教程》、《CI(CodeIgniter)框架進(jìn)階教程》、《Zend FrameWork框架入門教程》及《PHP模板技術(shù)總結(jié)》。

希望本文所述對(duì)大家基于ThinkPHP框架的PHP程序設(shè)計(jì)有所幫助。

您可能感興趣的文章:
  • thinkphp5 + ajax 使用formdata提交數(shù)據(jù)(包括文件上傳) 后臺(tái)返回json完整實(shí)例
  • TP5(thinkPHP5)框架使用ajax實(shí)現(xiàn)與后臺(tái)數(shù)據(jù)交互的方法小結(jié)
  • ThinkPHP5.1+Ajax實(shí)現(xiàn)的無(wú)刷新分頁(yè)功能示例
  • ThinkPHP5 通過ajax插入圖片并實(shí)時(shí)顯示(完整代碼)
  • Thinkphp5框架ajax接口實(shí)現(xiàn)方法分析
  • ThinkPHP框架結(jié)合Ajax實(shí)現(xiàn)用戶名校驗(yàn)功能示例
  • thinkPHP利用ajax異步上傳圖片并顯示、刪除的示例
  • TP5(thinkPHP5)框架基于ajax與后臺(tái)數(shù)據(jù)交互操作簡(jiǎn)單示例
  • ThinkPHP 5 AJAX跨域請(qǐng)求頭設(shè)置實(shí)現(xiàn)過程解析

標(biāo)簽:黔東 文山 廈門 梅河口 湘西 海北 濮陽(yáng) 惠州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《thinkPHP+mysql+ajax實(shí)現(xiàn)的仿百度一下即時(shí)搜索效果詳解》,本文關(guān)鍵詞  thinkPHP+mysql+ajax,實(shí)現(xiàn),的,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《thinkPHP+mysql+ajax實(shí)現(xiàn)的仿百度一下即時(shí)搜索效果詳解》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于thinkPHP+mysql+ajax實(shí)現(xiàn)的仿百度一下即時(shí)搜索效果詳解的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章