Bootstrap模態框禁用空白處點擊關閉,bootstrap模態

來源:互聯網
上載者:User

Bootstrap模態框禁用空白處點擊關閉,bootstrap模態

模態框(Modal)是覆蓋在父表單上的子表單。通常,目的是顯示來自一個單獨的源的內容,可以在不離開父表單的情況下有一些互動。子表單可提供資訊、互動等。bootstrap的模態框在預設情況下,點擊其他空白地區(通常是遮罩層),模態框會被關閉,那麼以下方法就是禁止點擊其他地區關閉模態框。

$('#myModal').modal({backdrop: 'static', keyboard: false});

backdrop:static時,空白處不關閉.

keyboard:false時,esc鍵盤不關閉.

上述代碼也用於開啟模態框。 

也可以使用以下方法:

<div class="modal" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" data-backdrop="static" data-keyboard="false"> <div class="modal-dialog custom-dialog succ-dialog">  <div class="modal-content">   <div class="modal-header">    <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>    <h4>提示資訊</h4>   </div>   <div class="modal-body">    <div><img src="images/loading.gif"><p><span>投標成功!</span><img src="images/success.png"></p></div>   </div>     </div> </div></div>

這裡的data-backdrop="static"指定一個靜態背景,當使用者點擊模態框外部時不會關閉模態框。而data-keyboard是指當按下 escape 鍵時關閉模態框,設定為 false 時則按鍵無效。

以上就是本文的全部內容,希望對大家的學習有所協助,也希望大家多多支援幫客之家。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.