我正在开发MVC应用程序。 我正在使用bootstrp for CSS。
我正在使用警报/对话框来确认删除记录。 但对于如何阅读用户对OK或取消的响应感到困惑。
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;
答案 0 :(得分:0)
您是否尝试bootboxjs它使用Bootstrap
我会给你一个示例代码:
bootbox.confirm("Are you sure?", function(result) {
if (result)
{
Example.show("You press Ok");
}
else
{
Example.show("You press Cancel");
}
});
答案 1 :(得分:0)
就个人而言,我在每个模态按钮上使用click事件来执行我想要的动作。
我认为模态发送的结果并不像我们在其他语言中看到的那样。