|

代碼:
復(fù)制代碼 代碼如下:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="JqueryTableFilter.ASPx.cs" Inherits="JqueryTableFilter" %>
<!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 runat="server">
<title></title>
<script src="Script/jquery-1.3.2-vsdoc.js" type="text/Javascript"></script>
<script type="text/Javascript">
$(function() {
$("#Text1").keyup(function() {
var filterText = $(this).val();
$("#<%=GridView1.ClientID %> tr").not(":first").hide().filter(":contains('" + filterText + "')").show();;
}).keyup();
});
</script>
</head>
<body>
<form id="form1" runat="server">
<div style="width:60%;">
<input id="Text1" type="text" />
<ASP:GridView ID="GridView1" runat="server" AutoGenerateColumns="False"
DataKeyNames="OrderID" DataSourceID="SqlDataSource1"
HorizontalAlign="Left" PageSize="50" >
<Columns>
<ASP:BoundField DataField="OrderID" HeaderText="OrderID" ReadOnly="True"
SortExpression="OrderID" InsertVisible="False" />
<ASP:BoundField DataField="CustomerID" HeaderText="CustomerID"
SortExpression="CustomerID" />
<ASP:BoundField DataField="EmployeeID" HeaderText="EmployeeID"
SortExpression="EmployeeID" />
<ASP:BoundField DataField="OrderDate" HeaderText="OrderDate"
SortExpression="OrderDate" />
<ASP:BoundField DataField="RequiredDate" HeaderText="RequiredDate"
SortExpression="RequiredDate" />
<ASP:BoundField DataField="ShippedDate" HeaderText="ShippedDate"
SortExpression="ShippedDate" />
<ASP:BoundField DataField="ShipVia" HeaderText="ShipVia"
SortExpression="ShipVia" />
<ASP:BoundField DataField="Freight" HeaderText="Freight"
SortExpression="Freight" />
</Columns>
</ASP:GridView>
<ASP:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:NorthwindConnectionString %>"
SelectCommand="SELECT top 50 * FROM [Orders]"></ASP:SqlDataSource>
</div>
</form>
</body>
</html>
JQuery代碼就:
復(fù)制代碼 代碼如下:
$(function() {
$("#Text1").keyup(function() {
var filterText = $(this).val();
$("#<%=GridView1.ClientID %> tr").not(":first").hide().filter(":contains('" + filterText + "')").show();;
}).keyup();
});
里面最重要的就是JQuery的選擇器:
1:$("#<%=GridView1.ClientID %> tr")選擇表格的所有行;
2:not(":first"):除去第一行表頭行;
3:filter(":contains('" + filterText + "')"):從上面所選擇的行里面篩選出行文本中包含filterText 的行顯示出來(lái);
4:最后加一句keyup()是為了在提交后重新觸發(fā)keyup事件。(但是在這里沒(méi)有作用因?yàn)槲矣玫目蛻舳丝丶](méi)有ViewState
若是服務(wù)器端控件就會(huì)看見(jiàn)他的作用)。
JQuery的選擇器的強(qiáng)大之處,讓我們能救這么簡(jiǎn)單的實(shí)現(xiàn)客戶端的簡(jiǎn)單篩選。最后加一句關(guān)于表格篩選有JQuery插件提供
給我們選擇, 但是這種簡(jiǎn)單的功能,我不會(huì)去選擇加入一個(gè)JavaScript文件庫(kù),呵呵。
作者:破 浪
JavaScript技術(shù):基于JQuery的一句代碼實(shí)現(xiàn)表格的簡(jiǎn)單篩選,轉(zhuǎn)載需保留來(lái)源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。