layui中layer弹出层点击事件无效解决

1
2
3
$(document).on(‘click’, ‘#test’, function() {
layer.msg(‘响应点击事件’);
});

原文链接

Thymeleaf报错org.thymeleaf.exceptions.TemplateProcessingException Could not parse as expression

在使用layui初始化table的时候,报错

[[]]之间加个空格,如[ [。这个问题就莫名其妙的解决了!

1
2
3
4
5
6
cols: [ [
{field: 'name', title: '角色名称', align: 'center'},
{field: 'remark', title: '角色备注', align: 'center'},
{field: 'createTime', title: '创建时间', align: 'center'},
{fixed: 'right', title: '操作', toolbar: '#roleRowBar', align: 'center', width: 280}
] ]

原文链接