
Layui
干到60岁退休的码农
这个作者很懒,什么都没留下…
展开
-
Layui使用入门教程
获得 layui 后,将其完整地部署到你的项目目录(或静态资源服务器),你只需要引入下述两个文件:./layui/css/layui.css./layui/layui.js //提示:如果是采用非模块化方式(最下面有讲解),此处可换成:./layui/layui.all.js没错,不用去管其它任何文件。因为他们(比如各模块)都是在最终使用的时候才会自动加载。这是一个基本的入门页面:<...原创 2019-07-04 19:41:51 · 41283 阅读 · 2 评论 -
Layui table 设置radio选中状态
layui.use(['table'], function () { var table = layui.table; var bindDatas = table.cache["bind"]; bindDatas[0].LAY_CHECKED = true;//举例 });原创 2019-11-04 15:19:27 · 4989 阅读 · 0 评论 -
Layui table列中参数转换&Layui table列中的值替换
done: function (res, curr, count) { console.log(res); $("[data-field = 'sort']").children().each(function () { if ($(this).text() == '1') { $(this).text("人才"); } el...原创 2019-11-01 10:23:29 · 2593 阅读 · 1 评论 -
Layui table内写done回调事件
<table class="layui-table" lay-data="{height:315, width: 300, page:true, id:'test', done :doneFn}" lay-filter="test">var doneFn = function () { alert(1);}原创 2019-11-01 10:20:50 · 8437 阅读 · 2 评论