layer回调事件右上角关闭/取消/多按钮回调,老年人记忆系列!!!
layer.open({
title:'头信息',
btn:['确认','取消','按钮3'],//多个按钮直接用btn1/btn2/btn3...回调
area:['450px','220px'],
content:"<div style='font-size: 15px'>展示文字</div>",
yes:function (index, layero) {//这里也可以用btn1替代yes
alert('确定按钮回调')
}, btn2 : function() {
alert('取消按钮回调')
}, btn3 : function() {
alert('按钮3回调')
},cancel: function(){
alert('右上角关闭按钮回调')
},end: function(){
alert('最后执行回调')
}
});
layer.prompt({
btn:['确定','取消'],
title: '请输入口令'
,btn2: function(){
//取消验证回调
},cancel: function(){
//右上角关闭按钮回调
}
}, function(pass, index){
//yes
});
}