layer点击自定义按钮关闭对应的弹窗,layer如何关闭弹窗
<script> // 定义变量名 var LayIndex; // 点击定义的弹窗按钮弹出弹窗 $("#Btn").click(function(){ LayIndex = layer.open({ type: 1 //Page层类型 ,area: ['500px', '300px'] ,title: '弹出窗标题' ,shade: 0.6 //遮罩透明度 ,anim: 1 //0-6的动画形式,-1不开启 }); }); // 自定义关闭按钮触发事件 $("#ShutDown").click(function(){ layer.close(LayIndex) }); </script>
本文链接:https://my.lmcjl.com/post/20440.html
展开阅读全文
4 评论