17

好吧,我绝不是 JavaScript 大师,也许我还在考虑桌面软件开发,但这就是我想要实现的目标:

  • 我正在使用Twitter Bootstrap 的模态
  • 在某些情况下,在采取行动之前,我想用“你确定吗?”来验证它。(是/否)模态对话框。

问题 :

  • 内在逻辑应该是什么?

我是说 :

  • 用户点击 buttonA(最终执行 actionA)
  • 我想启动模态,等待输入(两个按钮中的一个 - 是/否)和/或在执行(或不执行)actionA之前将其传递给一些检查程序

这是我的模态 HTML 代码(按钮应该 - 以某种方式 - 通过它们的onclickjavascript 例程起作用吗?) - 还要注意这#confirmMessage将是可变的。

<div class="modal fade hide" id="confirmAlert">
    <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal">x</button>
        <h3 id="confirmTitle">Are you sure?</h3>
    </div>

    <div class="modal-body">
        <p id="confirmMessage">Body</p>
    </div>
    <div class="modal-footer">
        <a href="#" class="btn" data-dismiss="modal">Cancel</a>
        <a href="#" class="btn btn-danger">Yes</a>
    </div>
</div>

只是一个想法:

  • 写一个类似的函数checkBeforeExec(message,functionToExec)
  • 设置#confirmMessage为消息和是'href tojavascript:functionToExec
  • 说得通?

我知道这听起来可能有点令人困惑 - 但我根本不知道最适合 JavaScript 的方法是什么......

4

2 回答 2

15

我围绕模态创建了一个对话框管理器,它的confirm辅助函数基本上可以做到这一点:

var callback = function(result) {
  alert(result);
}); // define your callback somewhere

$('#confirmAlert').on('click', '.btn, .close', function() {
  $(this).addClass('modal-result'); // mark which button was clicked
}).on('hidden', function() {
  var result = $(this).find('.modal-result').filter('.btn-danger').length > 0; // attempt to filter by what you consider the "YES" button; if it was clicked, result should be true.

  callback(result); // invoke the callback with result
});

此外,您应该同时设置 Cancel 和 Yes 按钮data-dismiss="modal"

这是一个小提琴,带有我的对话框管理器的简单示例

请注意,如果您使用的是Bootstrap 3,则应向hidden.bs.modal事件添加处理程序,而不是hidden.

于 2012-08-13T10:03:05.693 回答
1

使用 jquery,您可以使用类似的东西

$('.btn').click(function(){
   val=$(this).val()
   if(val=='Yes'){
     //continue the processing
   }
})
于 2012-08-13T10:06:36.287 回答