Bootstrap v2.3.2 - 隐藏模态然后重新打开新内容

时间:2014-04-01 08:27:14

标签: javascript jquery twitter-bootstrap modal-dialog

我正在尝试保存模态内容并成功保存我想要关闭模式然后用空表单字段重新打开它。

除了重新打开模态外,一切正常......

这是我的代码。

$('#modal-footer .add-another').click(function(e){
    e.preventDefault();
    $.post('/save', $('form').serialize(), function(data){
        $('#edit_modal').modal('hide');
        $("#edit_modal").on('hidden', function() {
            $("#edit_modal").modal({
                remote: '/form/'
            });
        });
    });

    return false;
});

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

试试这种方式

$.post('/save', $('form').serialize(), function(data){
        $('#edit_modal').modal('hide');
        $("#edit_modal").on('hidden', function() {
            $("#edit_modal").modal({
                remote: '/form/'
            });
        });
        $('form')[0].reset();//Reset the form if in current page
        $('#edit_modal').modal('show');//Open the modal
    });