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>
				 沃梦达教程
				
			本文标题为:Bootstrap Modal插件
				
        
 
            
        
             猜你喜欢
        
	     - D3.js selectAll()用法 2022-07-13
 - Bootstrap .well类 1970-01-01
 - D3.js数组API 1970-01-01
 - js过滤所有特殊字符的实例代码 2022-10-16
 - Bootstrap表格行或单元格 1970-01-01
 - 原始CSS美化select下拉框option示例代码 2022-10-05
 - Bootstrap .btn-primary类 1970-01-01
 - Bootstrap创建下拉菜单 1970-01-01
 - Bootstrap navbar-fixed-bottom类使用 1970-01-01
 - Bootstrap单选按钮 1970-01-01
 
						
						
						