如何使用jQuery打开Bootstrap模式窗口?

2022-08-29 22:13:08

我正在使用Twitter Bootstrap模式窗口功能。当有人在我的表单上单击“提交”时,我想在单击表单中的“提交按钮”时显示模式窗口。

<form id="myform" class="form-wizard">
    <h2 class="form-wizard-heading">BootStap Wizard Form</h2>
    <input type="text" value=""/>
    <input type="submit"/>
</form>

<!-- Modal -->
<div id="myModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
    <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
        <h3 id="myModalLabel">Modal header</h3>
    </div>
    <div class="modal-body">
        <p>One fine body…</p>
    </div>
    <div class="modal-footer">
        <button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
        <button class="btn btn-primary">Save changes</button>
    </div>
</div>

jQuery:

$('#myform').on('submit', function(ev) {
    $('#my-modal').modal({
        show: 'false'
    }); 


    var data = $(this).serializeObject();
    json_data = JSON.stringify(data);
    $("#results").text(json_data); 
    $(".modal-body").text(json_data); 

    // $("#results").text(data);

    ev.preventDefault();
});

答案 1

Bootstrap有几个函数可以在模态上手动调用:

$('#myModal').modal('toggle');
$('#myModal').modal('show');
$('#myModal').modal('hide');

你可以在这里看到更多:Bootstrap 模态组件

特别是方法部分

因此,您需要更改:

$('#my-modal').modal({
    show: 'false'
}); 

自:

$('#myModal').modal('show'); 

如果您希望制作自己的自定义弹出窗口,以下是来自其他社区成员的建议视频:

https://www.youtube.com/watch?v=zK4nXa84Km4


答案 2

大多数情况下,当不起作用时,它是由于包含jQuery两次引起的。包含 jQuery 2 次会使模态不起作用。$('#myModal').modal('show');

删除其中一个链接以使其再次工作。

此外,某些插件也会导致错误,在这种情况下,添加

jQuery.noConflict(); 
$('#myModal').modal('show');