如何为Bootstrap确认对话框停止AngularJs代码?

时间:2016-08-05 10:28:51

标签: javascript jquery angularjs twitter-bootstrap

基本上我正在将旧的样式window.confirm对话框转换为bootsrap对话框。我在角度代码中调用Javascript函数

function showConfirmation(msg)
{
    jQuery('#confirmationModal .modal-body h2').html(msg);
    jQuery('#confirmationModal').modal();       
}

Angular Code:

{  
 Converting from old style confirmation box
 //if(!window.confirm('Are you sure ')

     var msg= 'Are you sure'; 
    if(ShowConfirmation(msg))
    {

    }
}

现在在Angular代码中我需要从确认对话框中获取True / false值,我还需要根据用户输入恢复执行。

1 个答案:

答案 0 :(得分:0)

请您在http://bootboxjs.com/examples.html查看下面的内容吗? 您可以编写回调函数并将更改应用于角度js变量。 请确保您必须在回调函数中使用$ scope.apply。