网络知识 娱乐 jQuery EasyUI 数据网格 - 添加查询功能

jQuery EasyUI 数据网格 - 添加查询功能

本实例演示如何从数据库得到数据,并将它们显示在数据网格(datagrid)中。然后演示如何根据用户输入的搜索关键词搜寻显示结果。

创建数据网格(DataGrid)

创建带有分页功能的数据网格(datagrid),然后添加工具栏到其中。

<table id="tt" class="easyui-datagrid" style="width:600px;height:250px"n url="datagrid24_getdata.php" toolbar="#tb"n title="Load Data" iconCls="icon-save"n rownumbers="true" pagination="true">n <thead>n <tr>n <th field="itemid" width="80">Item ID</th>n <th field="productid" width="80">Product ID</th>n <th field="listprice" width="80" align="right">List Price</th>n <th field="unitcost" width="80" align="right">Unit Cost</th>n <th field="attr1" width="150">Attribute</th>n <th field="status" width="60" align="center">Stauts</th>n </tr>n </thead>n </table>

工具栏定义如下:

<div id="tb" style="padding:3px">n <span>Item ID:</span>n <input id="itemid" style="line-height:26px;border:1px solid #ccc">n <span>Product ID:</span>n <input id="productid" style="line-height:26px;border:1px solid #ccc">n <a href="#" class="easyui-linkbutton" plain="true" onclick="doSearch()">Search</a>n </div>

当用户输入查询值并按下查询按钮时,'doSearch' 函数将被调用:

function doSearch(){n $('#tt').datagrid('load',{n itemid: $('#itemid').val(),n productid: $('#productid').val()n });n }

上面的代码调用了 'load' 方法来加载新的数据网格(datagrid)数据。我们需要传递 'itemid' 和 'productid' 参数到服务器。

服务器端代码

include 'conn.php';n n $page = isset($_POST['page']) ? intval($_POST['page']) : 1;n $rows = isset($_POST['rows']) ? intval($_POST['rows']) : 10;n $itemid = isset($_POST['itemid']) ? mysql_real_escape_string($_POST['itemid']) : '';n $productid = isset($_POST['productid']) ? mysql_real_escape_string($_POST['productid']) : '';n n $offset = ($page-1)*$rows;n n $result = array();n n $where = "itemid like '$itemid%' and productid like '$productid%'";n $rs = mysql_query("select count(*) from item where " . $where);n $row = mysql_fetch_row($rs);n $result["total"] = $row[0];n n $rs = mysql_query("select * from item where " . $where . " limit $offset,$rows");n n $items = array();n while($row = mysql_fetch_object($rs)){n array_push($items, $row);n }n $result["rows"] = $items;n n echo json_encode($result);

没有安装环境需要下载这两个脚本:

http://code.jquery.com/jquery-1.6.1.min.js

http://www.w3cschool.cc/try/jeasyui/jquery.easyui.min.js