bootbox.confirm怎么变成同步
function test(){
bootbox.confirm("<div style='line-height: 1.5;'>测试</div>", function(result) {
if (result) {
return true;
}else{
hideBootboxDialog();
return false;
}
});
return false;
}
我现在的需求是通过bootbox.confirm返回的值决定是否要进行下面的方法,但是现在bootbox.confirm是异步的,怎么才能变成同步的呢?
bootbox.confirm("<div style='line-height: 1.5;'>测试</div>", function(result) {
if (result) {
return true;
}else{
hideBootboxDialog();
return false;
}
});
return false;
}
我现在的需求是通过bootbox.confirm返回的值决定是否要进行下面的方法,但是现在bootbox.confirm是异步的,怎么才能变成同步的呢?
0 个回复