BootStrap彈窗

效果圖:css

注意引入的文件,js文件要在前面html

Bootstrap框架中的模態彈出框,分別運用了「modal」、「modal-dialog」和「modal-content」樣式,而彈出窗真正的內容都放置在「modal-content」中,其主要又包括三個部分:jquery

  ☑ 彈出框頭部,通常使用「modal-header」表示,主要包括標題和關閉按鈕bootstrap

  ☑ 彈出框主體,通常使用「modal-body」表示,彈出框的主要內容框架

  ☑ 彈出框腳部,通常使用「modal-footer」表示,主要放置操做按鈕spa

@{
    Layout = null;
}

<!DOCTYPE html>

<html>
<head>
    <meta name="viewport" content="width=device-width" />
    <title>Index</title>
   <script src="~/Script/jquery-1.11.2.min.js"></script> <script src="~/bootstrap-3.3.5-dist/js/bootstrap.js"></script> <link href="~/bootstrap-3.3.5-dist/css/bootstrap.min.css" rel="stylesheet" />
</head>
<body>
    <div>
        <input id="Button1" type="button" value="彈窗" class="btn btn-primary btn-lg" data-toggle="modal" 
   data-target="#myModal" />
   </div>
        <!-- 模態框(Modal) -->
<div class="modal fade" id="myModal"  >
   <div class="modal-dialog">
      <div class="modal-content">
         <div class="modal-header">
            <button type="button" class="close"  > 
           
            </button>
            <h4 class="modal-title" id="myModalLabel">
               模態框(Modal)標題
            </h4>
         </div>
         <div class="modal-body">
             <input id="Text1" type="text"  class="form-control"/>
         </div>
         <div class="modal-footer">
            <button type="button" class="btn btn-default" 
               data-dismiss="modal">關閉
            </button>
            <button type="button" class="btn btn-primary">
               提交更改
            </button>
         </div>
      </div><!-- /.modal-content -->
</div><!-- /.modal -->

    </div>
</body>
</html>
相關文章
相關標籤/搜索