首先在标签容器中声明class属性为layui-form来标识一个表单元素块,结合html标签和css样式组合成不同的表单元素,并通过layui的form模块内部的工具完成交互, 第一次使用需注意,layui的form表单需要render渲染以后才能使用form表单元素和功能。 其中layui-fo ...
分类:
其他好文 时间:
2020-11-08 16:47:01
阅读次数:
20
树形菜单 $(function () { $.ajax({ url: window.location.protocol + '//' + window.location.host + '/Home/Menu', data: null, type: 'post', dataType: 'json', ...
分类:
其他好文 时间:
2020-11-06 02:16:29
阅读次数:
25
如何根据条件判断是否默认选中table表格前面的复选框 table.render({ elem: '#userTable' , url: '../sysRole/getUserList' , title: '用户列表' , page: true //开启分页 , cols: [[ {type:'ch ...
分类:
其他好文 时间:
2020-11-04 18:51:21
阅读次数:
32
一、背景 我采用的前端样式是 LayUI,通过它的富文本编辑器保存内容到数据库后,遇到了一个回显到页面的问题 二、方案 在不考虑使用 Vue 的情况下,有一种简单的方式 <div id="desc_pre" hidden="hidden"> {{ blog.desc }} </div> <div i ...
分类:
Web程序 时间:
2020-10-27 11:14:39
阅读次数:
45
#layui如何解析多层嵌套json数据 最近使用layui进行前端web页面开发时发现,layui默认要求的数据格式规范必须是: "code": , "msg": "", "count": , "data": 而我的后端接口返回的数据是这样的:在data中嵌套了多个对象,这样一来就导致layui无 ...
分类:
Web程序 时间:
2020-10-26 11:20:22
阅读次数:
75
https://blog.csdn.net/weixin_36571185/article/details/78700802 layui 文件上传 https://blog.csdn.net/kaikai0921/article/details/106163843/ 上传下载 ...
分类:
Web程序 时间:
2020-10-26 10:35:35
阅读次数:
32
;(function(global,factory){ typeof exports 'object' && typeof module !== 'undefined' ? module.exports = factory() : typeof define 'function' && define ...
分类:
其他好文 时间:
2020-09-24 22:08:52
阅读次数:
79
在页面加载完成时候 '.layui-table-link' 元素是可以触发click的,当动态添加 '.layui-table-link' 时候,新添加的元素却触发不了click事件,类似 $("a[class='layui-table-link']").click(function () { al ...
分类:
其他好文 时间:
2020-09-23 23:33:16
阅读次数:
37
打开的页面为一个页签 top.layui.index.openTabsPage('business/businessUserShow.jsp#/self=1','个人信息') businessUserShow.jsp: <script> layui.config({ base: '${ctxLayu ...
分类:
Web程序 时间:
2020-09-21 12:05:55
阅读次数:
111
其中一列: {field:'companyName', title: '公司名称', align: 'center',minWidth:200,templet:tplCompanyName } 模板方法: var tplCompanyName = function (d) { var html = ...
分类:
其他好文 时间:
2020-09-21 12:05:38
阅读次数:
42