Bootstrap Modal插件

h2Example of using methods of Modal Plugin/h2!-- Button trigger modal --button class = btn btn-primary btn-lg data-toggle = modal data-target = &

编程学习网为您整理以下代码实例,主要实现:Bootstrap Modal插件,希望可以帮到各位朋友。

<h2>Example of using methods of Modal Plugin</h2>

<!-- button trigger modal -->
<button class = "btn btn-primary btn-lg" data-toggle = "modal" data-target = "#myModal">
   Launch demo modal
</button>

<!-- Modal -->
<div class = "modal fade" ID = "myModal" tabindex = "-1" role = "dialog" 
   aria-labelledby = "myModalLabel" aria-hIDden = "true">

   <div class = "modal-dialog">
      <div class = "modal-content">

         <div class = "modal-header">
            <button type = "button" class = "close" data-dismiss = "modal" aria-hIDden = "true">
               ×
            </button>

            <h4 class = "modal-Title" ID = "myModalLabel">
               This Modal Title
            </h4>
         </div>

         <div class = "modal-body">
            Press ESC button to exit.
         </div>

         <div class = "modal-footer">
            <button type = "button" class = "btn btn-default" data-dismiss = "modal">
               Close
            </button>

            <button type = "button" class = "btn btn-primary">
               submit changes
            </button>
         </div>

      </div><!-- /.modal-content -->
   </div><!-- /.modal-dialog -->

</div><!-- /.modal -->

<script>
   $(function () { $('#myModal').modal({
      keyboard: true
   })});
</script>
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐