新手一枚 直接上解决方案
在layui弹出成功后再渲染表格数据
具体操作就是在layer弹层完成之后的回调中渲染表格数据
layer.open({
type: 1,
content: $("id"),
success: function(layero, index){
table.render({
//一些代码
})
}
})
2024-01-19 13:30:28
新手一枚 直接上解决方案
在layui弹出成功后再渲染表格数据
具体操作就是在layer弹层完成之后的回调中渲染表格数据
layer.open({
type: 1,
content: $("id"),
success: function(layero, index){
table.render({
//一些代码
})
}
})