Bootstrap模式而不是Javascript警报功能

时间:2016-03-12 12:31:04

标签: javascript jquery twitter-bootstrap bootstrap-modal bootbox

我是学习JavaScript的人。我需要一个bootstrap模式而不是java脚本函数内的警报。我做了一些改变,但我找不到合适的解决方案。请检查我的代码并为我提供解决方案。提前谢谢。

<a id="deleteButton" onClick="delete_Vehicle()" class="alert" data-toggle="tooltip" title="Delete">
<script>
function delete_Vehicle() {
    if (confirm('Do you want to delete the selected VEHICLE?')){
        DeleteDevice();
    }
}
</script>

这是我正在使用的bootstrap模态警报功能

$(document).on('click', '.alert', function(e) {
bootbox.confirm("Really delete this item?", function(result) {
    if(result !== true){
       e.preventDefault(); 
    }
});

});

在弹出窗口中,如果单击确定按钮并确认要删除,则应执行此功能   的 DeleteDevice();

1 个答案:

答案 0 :(得分:0)

result回调参数确定用户是否确认了该操作,因此您应检查是否为真,然后调用DeleteDevice()

bootbox.confirm("Really delete this item?", function(result) {
  if (result === true) {
    DeleteDevice();
  }
});