<script src="http://apps.bdimg.com/libs/jquery/2.0.0/jquery.min.js"></script> <script src="https://cdn.bootcss.com/layer/3.1.0/layer.js"></script> </head> <body> <BUTTON id="dd">Test !!</BUTTON> <script type="text/javascript"> $(function () { $("#dd").click(function(){ layer.msg('Add', { icon: 1, time: 1000 }, function () { var index = parent.layer.getFrameIndex(window.name); parent.layer.close(index); }); }); }); </script>
<script src="http://apps.bdimg.com/libs/jquery/2.0.0/jquery.min.js"></script> <script src="https://cdn.bootcss.com/layer/3.1.0/layer.js"></script> </head> <body> <BUTTON id="dd">Test !!</BUTTON> </body> <script type="text/javascript"> $(function () { $("#dd").click(function(){ layer.open({ type: 2, skin: 'layui-layer-lan', title: ['dit', false], shadeClose: true, maxmin: false, shade: [0.4, '#000', false], fix: false, borderWidth: 5, area: ['100%', '100%'], content: 'test.html', end: function () { } }); }); }); </script>