我正在尝试自定义 bootboxjs.prompt 选项,但似乎它不允许选项对象作为参数
这是来自http://bootboxjs.com/index.html#api的示例
bootbox.prompt("What is your name?", function(result) {
if (result === null) {
Example.show("Prompt dismissed");
} else {
Example.show("Hi <b>"+result+"</b>");
}
});
这就是我想要通过的:
var promptOptions = {
title: "Custom label",
buttons: {
confirm: {
label: "Save"
}
}
};
bootbox.prompt(promptOptions, function(result) {
if (result === null) {
console.log("Prompt dismissed");
} else {
console.log("Hi "+result);
}
});
如何自定义标题和按钮标签?