在使用EasyUI的datagrid时,避免不了的需要使用其查询功能
html代码
<div style="padding:0 0 0 7px;color:#333;"> 查询管理:<input type="text" class="textbox" name="search_game_name" style="width:110px;"> 创建时间从:<input type="text" name="date_from" editable="false" class="easyui-datebox" style="width:110px;"> 到:<input type="text" name="date_to" editable="false" class="easyui-datebox" style="width:110px;"> <a href="javascript:void(0)" class="easyui-linkbutton" iconCls="icon-search" onclick="game_tool.query();">查询</a></div>
点击查询时会触发query()方法
在加载datagrid的时候,需要有queryParams
当点击查询时,query()方法会发送queryParams参数到指定的url请求数据,后台程序只需根据查询条件返回相应数据即可
查询结果展示
时间: 2024-10-11 15:24:09