table is one of the core components of layui. It is used to perform a series of functions and dynamic data operations on tables, covering almost all needs involved in daily business. Supports fixed headers, fixed rows, fixed column left/column right, supports dragging to change column widths, supports sorting, supports multi-level headers, supports custom templates for cells, and supports table overloading (such as search and conditional filtering) etc.), supports check boxes, supports paging, supports cell editing and many other functions.
An example is compiled below:
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>layer学习</title> <link href="/Content/mycss.css" rel="stylesheet" /> <link href="/Content/layui/css/layui.css" rel="stylesheet" /> <script src="/Content/layui/layui.js"></script> </head> <body> <!--表格--> <div id="myTable" lay-filter="test"></div> <!--工具栏--> <script type="text/html" id="barDemo"> <a class="layui-btn layui-btn-xs" lay-event="edit">编辑</a> <a class="layui-btn layui-btn-danger layui-btn-xs" lay-event="del">删除</a> </script> <script type="text/html" id="allow"> <!-- 这里的 checked 的状态只是演示 --> <input type="checkbox" name="{{d.Id}}" value="{{d.Id}}" title="允许" lay-filter="allowSetFilter" {{ d.IsAllow == true ? 'checked' : '' }}> </script> <script> layui.use(['table','form'], function () { var table = layui.table; form = layui.form; //*******************************渲染表格********************************** table.render({ //------------------------核心参数 elem: '#myTable' //渲染的dom元素 , url: '/Home/GetUserList' //异步请求接口 , page: true //开启分页 , id: 'elementID' //容器唯一ID , cols: [[ //列设置 { field: 'Id', title: '编号', sort: true, fixed: 'left' } , { field: 'Name', title: '姓名' } , { field: 'Age', title: '年龄' } , { field: 'Role', title: '角色' } , { field: 'CreateTime', title: '创建时间' } , { title: '自定义模板', width: 200 , templet: function (d) { return '姓名:<span style="color: #c00;">' + d.Name + '</span>' } } , { field: 'IsAllow', title: '是否使用', templet: '#allow', unresize: true, align: 'center' } , { fixed: 'right', width: 150, align: 'center', toolbar: '#barDemo' } ]] //-----------------------------异步请求设置 , method: 'post' //异步请求方式 , headers: { hello: 'hengheng' } //在request的header中添加数据 , request: { //request设置,默认值如下 pageName: 'page', limitName: 'limit' } , response: { //response设置,默认值如下 statusName: 'code' , countName: 'count' , dataName: 'data' , msgName: 'msg' } , where: { //向后台添加的额外参数 nameParm: 'u', roleParm: 'o' } //-----------------------加载的其他选项 , done: function (res, curr, count) { //res为接口返回的数据、count为数据总长度 console.log(res); console.log(curr); console.log(count); } , text: { none: '暂无相关数据' //默认:无数据。 } , initSort: { field: 'Id' //排序字段为Id , type: 'desc' //排序方式 asc: 升序、desc: 降序、null: 默认排序 } }) //*******************************监听表格********************************** table.on('tool(test)', function (obj) { //test为lay-filter值 var data = obj.data; //获得当前行数据 var layEvent = obj.event; //获得 lay-event var tr = obj.tr; //获得当前行 tr 的DOM对象 if (layEvent === 'edit') { var id = data.Id; layer.open({ type: 2 , title: '修改' //标题栏 , scrollbar: false , area: ['400px', '300px'] , shade: 0.5 , id: 'layerId' //设定一个id,防止重复弹出 , moveType: 1 //拖拽模式,0或者1 , content: '/Home/EditUserInfo?id=' + id }); } else if (layEvent === 'del') { layer.confirm('真的删除吗?', function (index) { obj.del(); //删除对应行(tr)的DOM结构 layer.close(index); var id = data.Id; //向服务端发送删除指令 $.post("/Home/DeleteUserInfo", { "id": id }, function (result) { if (result.IsSuccess === 1) { layer.msg(result.Msg); table.reload('elementID'); } else { layer.msg(result.Msg); table.reload('elementID'); } }) }); } }); //*******************************监听checkbox******************************** //监听操作----置顶 form.on('checkbox(allowSetFilter)', function (obj) { var pre = { "Id": this.name, "IsAllow": obj.elem.checked }; //alert(this.name+'----'+obj.elem.checked); $.post('/Home/SetAllow', pre, function (result) { if (result.IsSuccess === 1) { layer.msg(result.msg) } else { layer.msg(result.msg) } }) }); }); </script> </body> </html>
For more layui knowledge, please pay attention to the layui usage tutorial column.
The above is the detailed content of Summary of common usage of layui table component. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Atom editor mac version download
The most popular open source editor

SublimeText3 English version
Recommended: Win version, supports code prompts!

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.