//弹出确认框
noty({
text:
'你要继续吗?'
,
buttons: [
{addClass:
'btn btn-primary'
, text:
'确定'
, onClick:
function
($noty) {
// this = button element 也就是当前的按钮
// $noty = $noty element 也就是当前这个提示信息对象
$noty.close();
noty({text:
'你点击了确定按钮'
, type:
'success'
});
}
},
{addClass:
'btn btn-danger'
, text:
'取消'
, onClick:
function
($noty) {
$noty.close();
noty({text:
'你点击了取消按钮'
, type:
'error'
});
}
}
]
});
//弹出提示框
noty({ text: '添加成功', type: 'success',timeout:1000 });