Layer 使用
Posted blogs-wang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Layer 使用相关的知识,希望对你有一定的参考价值。
官网文档 http://layer.layui.com/mobile/api.html
1.需要添加jquery的引用然后是
loadExtentFile("css", "/plugin/layer_mobile-2.0/need/layer.css");
loadExtentFile("js", "/plugin/layer_mobile-2.0/layer.js");
loadExtentFile("js", "/plugin/layer_mobile-2.0/layerBLL.js");
封装的部分代码。
function layer_tip(content) { layer.open({ content: content , skin: ‘msg‘ , anim: ‘scale‘ , time: 1 //2秒后自动关闭 , style: ‘ position: inherit; left: auto;‘ }); }; function Layer_Loding(content =‘请稍后‘) { layer.open({ content: content , type: 2 //, skin: ‘msg‘ //, anim: ‘scale‘ //, time: 1 //2秒后自动关闭 , shadeClose: false , style: ‘ position: inherit; left: auto;‘ }); }; ;function Layer_closeAll() { layer.closeAll(); //疯狂模式,关闭所有层 };
调用代码
layer_tip(‘请选择操作环节!‘);
Layer_Loding() ;
Layer_closeAll();
以上是关于Layer 使用的主要内容,如果未能解决你的问题,请参考以下文章