layui如何自定义弹出层关闭事件

再某些业务场景下,我们需要自定义弹出层关闭事件,代码示例如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
layui.use('layer', function () {

var layer = layui.layer;

layer.open({
skin: 'demo-class',
type: 1,
title: '登录',
area: ['600px', '700px'],
closeBtn :0,
content: $('.login'), //这里content是一个普通的String
cancel: function () {
vscode.postMessage({
command: 'close'
});
}
});
});

文章目录