Home  >  Article  >  Web Front-end  >  How to close the popup layer in layui

How to close the popup layer in layui

王林
王林Original
2020-11-23 17:59:068758browse

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.

How to close the popup layer in layui

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn