0

我使用 BootstrapDialog https://github.com/nakupanda/bootstrap3-dialog将我的编辑页面加载到模式对话框中,但是如何从 BootstrapDialog 获取提交按钮以提交表单?

这是一个问题。http://jsfiddle.net/philphil/ru1t1nc6/15/

编辑页面

<form id="createEventForm" action="http://10.10.15.30:8000/attendee/edit" style="display:none" method="POST">
    <label for="first_name">First_name:</label>
    <input name="first_name" value="Chris" id="first_name" type="text" />
    <label for="last_name">Last_name:</label>
    <input name="last_name" value="Griffin" id="last_name" type="text" />
    <input type="submit" />
</form>

jQuery

 $(document).ready(function () {

    var form = $('#createEventForm').html();
    BootstrapDialog.show({
        title: 'Title',
        message: form,
        buttons: [{
            label: 'Update'
        }]
    });

});
4

1 回答 1

1

如何向按钮添加操作:

http://jsfiddle.net/ru1t1nc6/17/

    BootstrapDialog.show({
        title: 'Title',
        message: form,
        buttons: [{
            label: 'Update',
            action: function(dialog) {
                // submit the form
                $('form').submit()
            }
        }]
    });
于 2014-12-18T23:04:17.673 回答