layui调用弹层的方法

layui调用弹层的方法:1、引用独立的【layer.js】文件,代码如【】;2、调用layui中的layer模块,代码如【ayer.msg('hello');】。

layui调用弹层的方法

推荐:《layUI教程》

本教程操作环境:windows10系统、layui2.5.6版,该方法适用于所有品牌电脑。

两种调用方法:

1、引用独立的layer.js文件

引入好layer.js后,直接用即可

<script src="layer.js"></script>
<script>
layer.msg('hello'); 
</script>

2、调用layui中的layer模块

layui.use('layer', function(){
  var layer = layui.layer;
  
  layer.msg('hello');
});

以上就是layui调用弹层的方法的详细内容,更多请关注www.sxiaw.com其它相关文章!