Bootbox.js (http://bootboxjs.com/)是一个小型的 JavaScript 库用来创建简单的可编程对话框,基于 Twitter 的 Bootstrap 开发。
弹出确认框方法:bootbox.confirm(),此时 默认 语言为英文,弹出对话框 代码及效果如下:
bootbox.confirm("确定删除此记录?", function(result) {
if (result) {
alert("ok");
}else{
alert("cancel");
}
设置语言为中文后 弹出对话框 代码及效果如下:
bootbox.setDefaults("locale","zh_CN");
bootbox.confirm("确定删除此记录?", function(result) {
if (result) {
alert("ok");
}else{
alert("cancel");
}
});