如果按照下面提到的代码完成窗口重新加载,则bootstrap bootbox警报会变淡。如果有人知道解决方案,请帮助。
bootbox.alert("已成功创建货件。\ n交易哈希是:" +数据) window.location.reload();
答案 0 :(得分:2)
这涵盖在多个地方in the documentation。重申:您的location.reload
来电需要在回调中:
bootbox.alert("Successfully created shipment. \n Transaction Hash is:" + data, function(){ window.location.reload(); });
或
bootbox.alert({
message: "Successfully created shipment. \n Transaction Hash is:" + data),
callback: function(){
window.location.reload();
}
});