本文實例講述了基于ajax的簡單搜索實現(xiàn)方法。分享給大家供大家參考,具體如下:
這里使用兩個.aspx文件,一個叫Default.aspx,一個叫AjaxOperations.aspx,第一個用來輸入搜索數(shù)據(jù),后一個用來對搜索關(guān)鍵字進行處理。js文件夾下面還有一個testJs.js的文件,它就是ajax操作的核心部分。不錯,code is cheap。看代碼:
testJs.js
// 此函數(shù)等價于document.getElementById /document.all
function $(s) { if (document.getElementById) { return eval('document.getElementById("' + s + '")'); } else { return eval('document.all.' + s); } }
// 創(chuàng)建 XMLHttpRequest對象,以發(fā)送ajax請求
function createXMLHTTP() {
var xmlHttp = false;
var arrSignatures = ["MSXML2.XMLHTTP.5.0", "MSXML2.XMLHTTP.4.0",
"MSXML2.XMLHTTP.3.0", "MSXML2.XMLHTTP",
"Microsoft.XMLHTTP"];
for (var i = 0; i arrSignatures.length; i++) {
try {
xmlHttp = new ActiveXObject(arrSignatures[i]);
return xmlHttp;
}
catch (oError) {
xmlHttp = false; //ignore
}
}
// throw new Error("MSXML is not installed on your system.");
if (!xmlHttp typeof XMLHttpRequest != 'undefined') {
xmlHttp = new XMLHttpRequest();
}
return xmlHttp;
}
function addAjaxSearch() {
inputField = $("txtSearch");
completeTable = $("suggestTb");
completeDiv = $("popup");
completeBody = $("suggestBody");
var tempStr = inputField.value;
// alert(tempStr);
var keyWord = encodeURI(tempStr);
if (tempStr == "")
return;
var xmlReq = createXMLHTTP();
xmlReq.open("post", "AjaxOperations.aspx?searchKeyword=" + keyWord, true);
xmlReq.onreadystatechange = function() {
if (xmlReq.readyState == 4) {
if (xmlReq.status == 200) {
//xmlReq.responseText為輸出的那段字符串
setNames(xmlReq.responseText);
}
else {
alert("Connect the server failed!");
}
}
}
xmlReq.send(null);
}
// 設(shè)置div中的表格數(shù)據(jù)
function setNames(names) {
if (names == "") {
clearNames();
return;
}
clearNames(); // 清空div中已有的的表格數(shù)據(jù)
setOffsets(); // 設(shè)置div到合適的位置
var row, cell, txtNode;
var s = names.split("#");
for (var i = 0; i s.length; i++) { // 顯示類似search下拉選擇項
var nextNode = s[i];
row = document.createElement("tr");
cell = document.createElement("td");
cell.onmouseout = function() { this.style.backgroundColor = ''; };
cell.onmouseover = function() { this.style.backgroundColor = '#E8F2FE'; };
cell.onclick = function() { completeField(this); }; // 搜索框設(shè)置為選擇的數(shù)據(jù)
cell.pop = "T";
txtNode = document.createTextNode(nextNode);
cell.appendChild(txtNode);
row.appendChild(cell);
$("suggestBody").appendChild(row);
}
}
// 清空div中已有的的表格數(shù)據(jù)
function clearNames() {
completeBody = $("suggestBody");
var ind = completeBody.childNodes.length;
for (var i = ind - 1; i >= 0; i--) {
completeBody.removeChild(completeBody.childNodes[i]);
}
completeDiv = $("popup");
completeDiv.style.border = "none";
}
// 設(shè)置div到合適的位置
function setOffsets() {
completeTable.style.width = inputField.offsetWidth; +"px";
var left = calculateOffset(inputField, "offsetLeft");
var top = calculateOffset(inputField, "offsetTop") + inputField.offsetHeight;
completeDiv.style.border = "black 1px solid";
completeDiv.style.left = left + "px";
completeDiv.style.top = top + "px";
}
function calculateOffset(field, attr) {
var offset = 0;
while (field) {
offset += field[attr];
field = field.offsetParent;
}
return offset;
}
// 搜索框設(shè)置為選擇的數(shù)據(jù)
function completeField(cell) {
inputField.value = cell.firstChild.nodeValue; // 搜索框設(shè)置為選擇的數(shù)據(jù)
clearNames(); //清空div中已有的的表格數(shù)據(jù)
}
//用來設(shè)置當鼠標失去焦點后文本框的隱藏
document.onmousedown = function() {
if (!event.srcElement.pop)
clearNames();
} //填寫輸入框
Default.aspx:
%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="WebTest2008.Default" %>
!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
html xmlns="http://www.w3.org/1999/xhtml">
head id="Head1" runat="server">
title>Ajax Search/title>
script src="js/testJs.js" type="text/javascript">/script>
style type="text/css" media="screen">
body
{
font: 11px arial;
}
.suggest_link
{
background-color: #FFFFFF;
padding: 2px 0px 2px 0px;
border:solid 1px #cceeff;
}
.suggest_link_over
{
background-color: #E8F2FE;
padding: 2px 0px 2px 0px;
}
#search_suggest
{
position: absolute;
background-color: #FFFFFF;
text-align: left;
border: 1px solid #000000;
}
/style>
/head>
body>
input name="txtSearch" id="txtSearch" type="text" class="suggest_link" onkeyup="addAjaxSearch();" maxlength="200" style="width: 200px" />nbsp;
input type="submit" id="cmdSearch" name="cmdSearch" value="Search" title="Run Search" />
div id="popup" style="position: absolute">
table id="suggestTb" cellspacing="0" cellpadding="0" bgcolor="#fffafa" border="0">
tbody id="suggestBody">
/tbody>
/table>
/div>
/body>
/html>
Default.aspx.cs:
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace WebTest2008
{
public partial class Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
}
AjaxOperations.aspx:
復制代碼 代碼如下:
%@ Page Language="C#" AutoEventWireup="true" CodeBehind="AjaxOperations.aspx.cs" Inherits="WebTest2008.AjaxOperations" %>
AjaxOperations.aspx.cs:
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace WebTest2008
{
public partial class AjaxOperations : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!string.IsNullOrEmpty(Request["searchKeyword"]))
{
string tempStr = Request["searchKeyword"];
/* 測試用 實際項目中可以對數(shù)據(jù)庫進行檢索等等相關(guān)操作,這里簡化了 */
System.Text.StringBuilder sb = new System.Text.StringBuilder();
sb.Append(tempStr + " #");
sb.Append("#");
sb.Append(tempStr += " " + tempStr);
sb.Append("#");
sb.Append(tempStr += " " + tempStr);
Response.Write(sb.ToString().TrimEnd(new char[] { '#' }));
}
}
}
}
上面的代碼我都已經(jīng)測試通過,復制粘貼運行試試看吧。
剛看到一篇文章里說,“實時搜索帶來的痛苦要遠大于他帶來的幫助。這就是為什么Google Suggest還處于beta測試而并沒有放在主頁上的原因。在Start.com Live.com上搜索的時候你是不能使用返回按鈕來查看上一次搜索或返回上一頁的。或許還沒有人來完成這項工作,但是完成這個工作應(yīng)該是很困難的至少是不太明知的或者會因此帶來更多的麻煩。(譯注:現(xiàn)在已經(jīng)有很多開源的框架可以實現(xiàn)歷史記錄功能)”。其實ajax實時搜索還是很有吸引力的,現(xiàn)在的很多網(wǎng)站都有這個功能。學習一下還是很有意義的。
希望本文所述對大家ajax程序設(shè)計有所幫助。
您可能感興趣的文章:- Ajax獲取數(shù)據(jù)然后顯示在頁面的實現(xiàn)方法
- jsp頁面 列表 展示 ajax異步實現(xiàn)方法
- 頁面向下滾動ajax獲取數(shù)據(jù)的實現(xiàn)方法(兼容手機)
- yii2使用ajax返回json的實現(xiàn)方法
- Ajax學習筆記---3種Ajax的實現(xiàn)方法【推薦】
- 詳解PHP+AJAX無刷新分頁實現(xiàn)方法
- JSP+jquery使用ajax方式調(diào)用json的實現(xiàn)方法
- ThinkPHP通過AJAX返回JSON的兩種實現(xiàn)方法
- jquery的ajax和getJson跨域獲取json數(shù)據(jù)的實現(xiàn)方法
- ajax 三種實現(xiàn)方法實例代碼