有没有人知道如何在 bootbox.js 对话框中的按钮上添加图标?我想在此功能的“否”和“是”按钮上添加图标:
$(function () {
$(".confirm-delete").click(function(e) {
e.preventDefault();
var id = $(this).data('id')
bootbox.confirm("Remove this product?", "No", "Yes", function(confirmed) {
if(confirmed) {
deleteRecord(id);
}
});
});
});