jQuery を使用して Bootstrap モーダル ウィンドウを開くにはどうすればよいでしょうか? 質問する

jQuery を使用して Bootstrap モーダル ウィンドウを開くにはどうすればよいでしょうか? 質問する

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

おすすめ記事