1. ホーム
  2. javascript

[解決済み] BootstrapのモーダルウィンドウをjQueryで開くには?

2022-03-18 09:29:36

質問

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();
});

解決方法は?

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