-1

プラグインを使用しようとしましmodalたが、効果がありません。コードが表示されます。場所は問題ありません。コードに何かがありますが、タータルが表示されます。助けてください。アドバイスをください。

  <!DOCTYPE HTML>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title></title>
        <link media="all" rel="stylesheet" href="docs/assets/css/bootstrap.css" type="text/css" />
        <link media="all" rel="stylesheet" href="docs/assets/css/bootstrap-responsive.css" type="text/css" />
        <script src="sgsheg/jquery-1.10.0.min.js" type="text/javascript"></script>
        <script src="sgsheg/bootstrap.min.js" type="text/javascript"></script>
        <script src="js/bootstrap-modal.js" type="text/javascript"></script>
    </head>
    <body>
        <div class="modal hide fade">
        <div class="modal-header">
            <button type="button" class="close" data-dismiss="model" aria-hidden="true" >&times;</button>
            <h3>Modal header</h3>
        </div>
        <div class="modal-body">
            <p>One fine body...</p>
        </div>
        <div class="modal-footer">
            <a href="#" class="btn">Close</a>
            <a href="#" class="btn btn-primary">Save changes</a>
        </div>
    </div>
    </body>
    </html>

ここに画像の説明を入力

4

2 に答える 2

1

あなたはtogglerがありません

<!-- Button to trigger modal -->
<a href="#myModal" role="button" class="btn" data-toggle="modal">Launch demo modal</a>

または、手動で発射することもできます

$(function(){
  $(".modal").modal("show"); //shows the modal on document ready
  //$(".some-class").on('click' , function() { //this is if you want to fire it with a button
  //   $(".modal").modal("show");              //of course you don't have to use both data-*
  //}                                          //and javascript, choose one.  
}

何をしなければならないかによります。

の準備ができshowmodalときに必要な場合は を使用し、そうでない場合は代わりにのみ使用してください。docjavascripthtml

UPDATEbootstrap.jsには、または のみが含まれます。一緒には含まれbootstrap-modalません。

于 2013-07-19T15:30:14.470 に答える