Bootstrap模態框(Modal)
模態框(Modal
)是覆蓋在父窗體上的子窗體。通常,目的是顯示來自一個單獨的源的內容,可以在不離開父窗體的情況下有一些互動。子窗體可提供資訊、互動等。
如果您想要單獨引用該外掛的功能,那麼您需要引用
modal.js
。或者,正如Bootstrap
外掛概覽 一章中所提到,您可以引用bootstrap.js
或壓縮版的bootstrap.min.js
。
用法
您可以切換模態框(Modal
)外掛的隱藏內容:
- 通過
data
屬性:在控制器元素(比如按鈕或者連結)上設定屬性data-toggle="modal"
,同時設定data-target="#identifier"
或href="#identifier"
來指定要切換的特定的模態框(帶有id="identifier"
)。 - 通過
JavaScript
:使用這種技術,您可以通過簡單的一行JavaScript
來呼叫帶有id="identifier"
的模態框:
$('#identifier').modal(options)
例項
一個靜態的模態視窗例項,如下面的例項所示:
例項
<h2>建立模態框(Modal)</h2>
<!-- 按鈕觸發模態框 -->
<button class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">開始演示模態框</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">模態框(Modal)標題</h4>
</div>
<div class="modal-body">在這裡新增一些文字</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>
結果如下所示:
程式碼講解:
- 使用模態視窗,您需要有某種觸發器。您可以使用按鈕或連結。這裡我們使用的是按鈕。
- 如果您仔細檢視上面的程式碼,您會發現在
<button>
標籤中,data-target="#myModal"
是您想要在頁面上載入的模態框的目標。您可以在頁面上建立多個模態框,然後為每個模態框建立不同的觸發器。現在,很明顯,您不能在同一時間載入多個模組,但您可以在頁面上建立多個在不同時間進行載入。 - 在模態框中需要注意兩點:
第一是.modal
,用來把<div>
的內容識別為模態框。
第二是.fade
class。當模態框被切換時,它會引起內容淡入淡出。 aria-labelledby="myModalLabel"
,該屬性引用模態框的標題。- 屬性
aria-hidden="true"
用於保持模態視窗不可見,直到觸發器被觸發為止(比如點選在相關的按鈕上)。 <div class="modal-header">
,modal-header
是為模態視窗的頭部定義樣式的類。class="close"
,close
是一個 CSS class,用於為模態視窗的關閉按鈕設定樣式。data-dismiss="modal"
,是一個自定義的 HTML5 data 屬性。在這裡它被用於關閉模態視窗。class="modal-body"
,是 Bootstrap CSS 的一個 CSS class,用於為模態視窗的主體設定樣式。class="modal-footer"
,是 Bootstrap CSS 的一個 CSS class,用於為模態視窗的底部設定樣式。data-toggle="modal"
,HTML5 自定義的 data 屬性 data-toggle 用於開啟模態視窗。
選項
有一些選項可以用來定製模態視窗(Modal Window
)的外觀和感觀,它們是通過 data
屬性或 JavaScript
來傳遞的。下表列出了這些選項:
選項名稱 | 型別/預設值 | Data 屬性名稱 | 描述 |
---|---|---|---|
backdrop |
boolean 或 string ‘static’ |
data-backdrop |
指定一個靜態的背景,當使用者點選模態框外部時不會關閉模態框。 |
預設值:true | |||
keyboard |
boolean |
data-keyboard |
當按下 escape 鍵時關閉模態框,設定為 false 時則按鍵無效。 |
預設值:true |
|||
show |
boolean |
data-show |
當初始化時顯示模態框。 |
預設值:true |
|||
remote |
path |
data-remote |
使用 jQuery .load 方法,為模態框的主體注入內容。如果新增了一個帶有有效 URL 的 href ,則會載入其中的內容。如下面的例項所示: |
預設值:false |
|||
<a data-toggle="modal" href="remote.html" data-target="#modal">請點選我</a> |
方法
下面是一些可與 modal()
一起使用的有用的方法。
方法 | 描述 | 例項 |
---|---|---|
Options: .modal(options) | 把內容作為模態框啟用。接受一個可選的選項物件。 | $('#identifier').modal({keyboard: false}) |
Toggle: .modal(‘toggle’) | 手動切換模態框。 | $('#identifier').modal('toggle') |
Show: .modal(‘show’) | 手動開啟模態框。 | $('#identifier').modal('show') |
Hide: .modal(‘hide’) | 手動隱藏模態框。 | $('#identifier').modal('hide') |
例項
下面的例項演示了方法的用法:
<!-- 模態框(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">模態框(Modal)標題</h4>
</div>
<div class="modal-body">按下 ESC 按鈕退出。</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-dialog -->
</div>
<!-- /.modal -->
結果如下所示:
只需要點選 ESC 鍵,模態視窗即會退出。
事件
下表列出了模態框中要用到事件。這些事件可在函式中當鉤子使用。
事件 | 描述 | 例項 |
---|---|---|
show.bs.modal |
在呼叫 show 方法後觸發。 | $('#identifier').on('show.bs.modal', function () { // 執行一些動作...}) |
shown.bs.modal |
當模態框對使用者可見時觸發(將等待 CSS 過渡效果完成)。 | $('#identifier').on('shown.bs.modal', function () {// 執行一些動作...}) |
hide.bs.modal |
當呼叫 hide 例項方法時觸發。 | $('#identifier').on('hide.bs.modal', function () {// 執行一些動作...}) |
hidden.bs.modal |
當模態框完全對使用者隱藏時觸發。 | $('#identifier').on('hidden.bs.modal', function () {// 執行一些動作...}) |
例項
下面的例項演示了事件的用法:
<!-- 模態框(Modal) -->
<h2>模態框(Modal)外掛事件</h2>
<!-- 按鈕觸發模態框 -->
<button class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">開始演示模態框</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">模態框(Modal)標題</h4>
</div>
<div class="modal-body">點選關閉按鈕檢查事件功能。</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-dialog -->
</div>
<!-- /.modal -->
<script>
$(function() {
$('#myModal').modal('hide')
});
</script>
<script>
$(function() {
$('#myModal').on('hide.bs.modal',
function() {
alert('嘿,我聽說您喜歡模態框...');
})
});
</script>
結果如下所示:
正如上面例項所示,如果您點選了 關閉 按鈕,即 hide
事件,則會顯示一個警告訊息。
相關文章
- bootstrap中的模態框(modal,彈出層)boot
- Bootstrap(v3.2.0)模態框(modal)垂直居中boot
- Bootstrap modal模態框彈出瞬間又消失boot
- 設定bootstrap modal模態框的寬度和寬度boot
- modal模態框的實現
- BootStrap的動態模態框及靜態模態框boot
- 純 CSS 打造一個模態(modal)框CSS
- BootStrap中模態框踩坑boot
- 【BootStrap】--登入載入模態框提示boot
- 詳細介紹React模態框元件react-modalReact元件
- Bootstrap 模態框無法呼叫的問題boot
- BootStrap 模態框禁用空白處點選關閉問題boot
- bootstrap modal垂直居中 (轉)boot
- bootstrap外掛學習-bootstrap.modal.jsbootJS
- bootstrap datepicker 在bootstrap modal中不顯示問題boot
- bootstrap modal的data-dismiss屬性boot
- 15款最好的 jQuery Modal(模態視窗)外掛jQuery
- Bootstrap外掛modal原始碼的學習boot原始碼
- 第 13 章 模態框外掛
- 模態框:固定位置學習
- jQuery 模態框外掛 - iLightBoxjQuery
- 解決Bootstrap模態視窗Modal中使用Kindeditor或UEditor編輯器第二次無法載入的問題boot
- bootstrap-modal.js學習筆記(原始碼註釋)bootJS筆記原始碼
- bootstrap提示和彈出框boot
- bootstrap23-選擇框boot
- JS 奧義解析(3):模態框的設計JS
- Jquery + Bootstrap 實現搜尋框jQueryboot
- bootstrap-彈框問題-居中boot
- ant design模態框中使用Select元件下拉選框不顯示元件
- 使用 ant design 模態框 載入框始終在上面,渲染無效
- Bootstrap3系列:輸入框組boot
- bootstrap13-邊框表格佈局boot
- Bootstrap靜態cdnboot
- 公司需求系列:js封裝一個移動端modal框JS封裝
- 如何實現angular2版本的modal彈框Angular
- bootstrap和bootstrap-select去除藍色邊框outlineboot
- React 模態框祕密和“輪子”漸進設計React
- bootStrap4 提示框(tooltip)的使用boot