layer删除

 layer.alert('', {
                            icon:3, title: '删除确认', content: '您确定要删除这条记录吗?', btn: ['确定','取消']
                        }, function (index) {
                            //business logic
                            del(num);
                            layer.close(index);
                        });                             
原文地址:https://www.cnblogs.com/zhang1997/p/8805345.html