优化 `layer.closeLast()` 方法,给第二个参数增加回调

[#I8JHBY](https://gitee.com/layui/layui/issues/I8JHBY)
pull/1430/head
贤心 2023-11-28 17:20:50 +08:00
parent e4ae678cb7
commit ab4ded2275
1 changed files with 2 additions and 2 deletions

View File

@ -1288,9 +1288,9 @@ layer.closeAll = function(type, callback){
}; };
// 根据弹层类型关闭最近打开的层 // 根据弹层类型关闭最近打开的层
layer.closeLast = function(type){ layer.closeLast = function(type, callback){
type = type || 'page'; type = type || 'page';
layer.close($('.layui-layer-'+ type +':last').attr("times")); layer.close($('.layui-layer-'+ type +':last').attr("times"), callback);
}; };