这样会有问题,点击右上角会等于按钮2的事件 layer.confirm('需要XXXXX吗', { btn: ['是', '否'],title:'xx'} , function:function(){ alert(1) } , function: function () { alert(2) } }); 改成以下即可layer.confirm('需要
layer.confirm('需要XXXXX吗', {
btn: ['是', '否'],title:'xx'}
, function:function(){
alert(1)
}
, function: function () {
alert(2)
}
});
改成以下即可layer.confirm('需要XXXXX吗', {
btn: ['是', '否']
, btn1:function(){
window.location.href = "/A.aspx"
}
, btn2: function () {
window.location.href = "/B.aspx"
}
});