Layui method to close the pop-up layer: through the [layer.closeAll();] method, this method can close all pop-up layers; if we only need to close the page layer, we can use the method [layer. closeAll('page');] to achieve.
The operating environment of this tutorial: Windows 10 system, layui version 2.5.6. This method is suitable for all brands of computers.
(Learning video sharing: javascript video tutorial)
layui method to close the pop-up layer:
Close all layers
layer.closeAll();
Close the information box
layer.closeAll('dialog');
Close all page layers
layer.closeAll('page');
Close all iframe layers
layer.closeAll('iframe');
Close the loading layer
layer.closeAll('loading');
Close all tips layers
layer.closeAll('tips');
Related recommendations: layui
The above is the detailed content of How to close the popup layer in layui. For more information, please follow other related articles on the PHP Chinese website!