zl程序教程

您现在的位置是:首页 >  其他

当前栏目

bootbox显示中文的按钮

中文 显示 按钮
2023-09-11 14:19:52 时间
 $("selector").on('click',function(){

bootbox.confirm({
title : "请确认",
buttons: {
confirm:{
label:'确认',
className:'btn-primary'
},
cancel:{
label:'取消',
className:'btn-default'
}
},
message:'确认?',
callback:function(result){
if(result){
alert("作废成功!");
}
},
className:"bootbox-sm"
});
});