标签:alt 列表 例子 column css 1.3 连接 har asc
<html>
<head>
<meta charset="utf-8" />
</head>
<body>
</body>
</html>
<script type="text/javascript" src="jquery-easyui-1.3.3/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="jquery-easyui-1.3.3/themes/default/easyui.css">
<link rel="stylesheet" type="text/css" href="jquery-easyui-1.3.3/themes/icon.css">
<script type="text/javascript" src="jquery-easyui-1.3.3/jquery.easyui.min.js"></script>
<script type="text/javascript" src="jquery-easyui-1.3.3/locale/easyui-lang-zh_CN.js"></script>
<script type="text/javascript" src="jquery-easyui-1.3.3/validate.js"></script>
Html:
<table id=‘grid0‘ title="部门管理01" class="easyui-datagrid"
fitColumn="true" pagination="true"
rownumbers="true" url="xxx.php" fit="false" toolbar="#toolbar">
</table>
效果:
在当前文件夹,新建一个dept.php
进行数据库连接测试
查询部门表数据,json格式返回:
如果我们想要做分页,就需要给datagrid传递两个参数,分别为total和rows,total代表这个表的查询总数,rows代表分页后查出来的数据。
分页规律:
现在,首先考虑如何在php文件中获取第几页和每页多少条?
在datagrid组件中,只要你设置了分页,就会给后台传递page和rows,分别对应第几页和每页多少条。
代码:
//查询部门表中的数据
$resultset = mysql_query("select * from tm_dept where 1=1 limit $start,$rows") or die(mysql_error());
$list = array();
$count = 0;
while($row = mysql_fetch_array($resultset)){
$list[$count++] = $row;
}
$data = array();
$data["rows"] = $list;
$resultset = mysql_query("select count(*) as total from tm_dept") or die(mysql_error());
while($row = mysql_fetch_array($resultset)){
$data["total"] = $row["total"];
}
echo json_encode($data);
渲染按钮的方法,给一个a标签加上class为easyui-linkbutton 即可。
例子:
<a href="javascript:openUserAddPage()" class="easyui-linkbutton" iconCls="icon-add" plain="true">新增用户</a>
下载地址:https://pan.baidu.com/s/1OXvqQwAmz7usgD4KqiUXLw
标签:alt 列表 例子 column css 1.3 连接 har asc
原文地址:https://www.cnblogs.com/skyblue-li/p/9056153.html