1

我正在开发 MVC 应用程序。我正在为 CSS 使用 bootstrp。

我正在使用警报/对话框来确认删除记录。但对如何阅读用户对确定或取消的响应感到困惑。

 var href = $(this).attr('href');
        if (!$('#dataConfirmModal').length) {
            $('body').append('<div id="dataConfirmModal" class="modal" role="dialog" aria-labelledby="dataConfirmLabel" aria-hidden="true"><div class="modal-header"><button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button><h6 id="dataConfirmLabel">Deactivation Confirmation</h6></div><div class="modal-body">Are you sure to deactive @Model.Name ? </div><div class="modal-footer"><button class="btn" data-dismiss="modal" aria-hidden="true">Cancel</button><a class="btn btn-primary" id="dataConfirmOK">OK</a></div></div>');
        } 
        $('#dataConfirmModal').find('.modal-body').text($(this).attr('data-confirm'));
        $('#dataConfirmOK').attr('href', href);
        $('#dataConfirmModal').modal({show:true});
        return false;
4

2 回答 2

0

就个人而言,我在每个模态按钮上使用点击事件来执行我想要的操作。

正如我们在其他语言中看到的那样,我认为模态不会发送结果。

于 2013-05-02T13:21:31.937 回答
0

你试过bootboxjs吗,顺便说一下它使用Bootstrap

我给你一个示例代码:

bootbox.confirm("Are you sure?", function(result) {
  if (result)
    {
      Example.show("You press Ok");
     }
   else
   {
      Example.show("You press Cancel");
   }
}); 
于 2013-05-02T13:18:58.850 回答