web-dev-qa-db-ja.com

JQueryを使ってブートストラップモデルウィンドウを開くにはどうすればいいですか?

私は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();
});
639
user244394

ブートストラップには、モーダルで手動で呼び出すことができるいくつかの関数があります。

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

あなたはここでもっと見ることができます: ブートストラップモーダルコンポーネント

具体的には methodsセクション

だからあなたは変更する必要があるでしょう:

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

に:

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

あなたがあなた自身のカスタムポップアップを作ることを探しているなら、これは他のコミュニティメンバーからの提案されたビデオです:

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

1167
Chase

また、データ属性を介して使用することができます

<button type="button" data-toggle="modal" data-target="#myModal">Launch modal</button>

この場合は、JavaScriptを使用する必要はありません。

あなたはここでもっと見ることができます: http://getbootstrap.com/2.3.2/javascript.html#modals

77
Gandarez

ほとんどの場合、$('#myModal').modal('show');が機能しないときは、jQueryを2回インクルードしたことが原因です。 jQueryを2回含めると、モーダルが機能しなくなります。

再度機能させるには、いずれかのリンクを削除してください。

さらに、いくつかのプラグインもエラーを引き起こします。

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

jQueryセレクタを使ってモーダルメソッドを(パラメータを渡さずに)呼び出すだけです。

これが例です。

$('#modal').modal();
16
Brane

リンクのonclick関数を使ってjQueryでモーダルを呼び出す場合、 "href"はnullにはできません。

例えば:

... ...
<a href="" onclick="openModal()">Open a Modal by jQuery</a>
... ...
... ...
<script type="text/javascript">

function openModal(){

    $('#myModal').modal();
}       
</script>

モーダルは表示できません。正しいコードは次のとおりです。

<a href="#" onclick="openModal()">Open a Modal by jQuery</a>
12
saneryee

ここで完全な解決策をチェックしてください。

http://www.w3schools.com/bootstrap/tryit.asp?filename=trybs_ref_js_modal_show&stacked=h

結果を得るために必要な順序でライブラリを配置するようにしてください。

1-最初のbootstrap.min.css 2- jquery.min.js 3- bootstrap.min.js

(言い換えれば、jquery.min.jsはbootstrap.min.jsの前に呼び出す必要があります)

    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js">
</script> 

 <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
9
A.Aleem11

ドキュメントの準備ができ次第、ブートストラップアラートを読み込む方法は次のとおりです。追加するだけでとても簡単です

 $(document).ready(function(){
   $("#myModal").modal();
});

W3Schoolsで demo を作成しました。

<!DOCTYPE html>
<html lang="en">
<head>
  <title>Bootstrap Example</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>

<div class="container">
  <h2>Here is how to load a bootstrap modal as soon as the document is ready </h2>
  <!-- Trigger the modal with a button -->


  <!-- Modal -->
  <div class="modal fade" id="myModal" role="dialog">
    <div class="modal-dialog">
    
      <!-- Modal content-->
      <div class="modal-content">
        <div class="modal-header">
          <button type="button" class="close" data-dismiss="modal">&times;</button>
          <h4 class="modal-title">Modal Header</h4>
        </div>
        <div class="modal-body">
          <p>Some text in the modal.</p>
        </div>
        <div class="modal-footer">
          <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
        </div>
      </div>
      
    </div>
  </div>
  
</div>

<script>
$(document).ready(function(){
   $("#myModal").modal();
});
</script>

</body>
</html>
9
csandreas1

私は失敗したいくつかの方法を試しましたが、以下は魅力のように私のために働きました:

$('#myModal').appendTo("body").modal('show');
5
novembersky

やってみる

$("#myModal").modal("toggle")

Id myModalでモーダルを開閉する。

上記の方法でうまくいかない場合は、bootstrap.jsが他のjsファイルによって上書きされていることを意味します。これが解決策です

1: - 他のjsファイルを上書きするように、bootstrap.jsを一番下に移動します。

2: - 順序が以下のようであることを確認してください

<script src="plugins/jQuery/jquery-2.2.3.min.js"></script>
<!-- Other js files -->
<script src="plugins/jQuery/bootstrap.min.js"></script>
3
<form id="myform" class="form-wizard">
    <h2 class="form-wizard-heading">BootStap Wizard Form</h2>
    <input type="text" value=""/>
    <input type="submit" id="submitButton"/>
</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>

この下のコードでモーダルを起動できます。

$(document).ready(function(){
    $("#submitButton").click(function(){
        $("#myModal").modal();
    });
});
2
Alperzkn

関数を呼び出すときに $ signの代わりに jQuery を使用してみてください。以下のように、私の場合はうまくいきました。

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

jQuery.noConflict(); jQuery( '#myModal')。modal( 'show');の場合動作しません、それはjQueryを2回インクルードしたことが原因です。 jQueryを2回含めると、モーダルが機能しなくなります。私の場合と同じように、それは問題を解決します。

さらにあなたはこのリンクに行くことができます

JQueryから呼び出してもブートストラップモデルウィンドウが表示されない

2
I B

これを試して

myModal1は、モーダルのIDです

$( '#myModal1')。modal({show:true});

0
vivek