警告:
bootbox.alert("xxx");
确认:
bootbox.confirm({
message: "This is a confirm with custom button text and color! Do you like it?",
buttons: {
confirm: {
label: 'Yes',
className: 'btn-success'
},
cancel: {
label: 'No',
className: 'btn-danger'
}
},
callback: function (result) {
console.log('This was logged in the callback: ' + result);
}
});
输入某个信息:
bootbox.prompt("输入姓名:", function(result) {
alert(result);
});
网友评论