首頁  >  文章  >  web前端  >  詳解bootstrap3-dialog-master模態框用法

詳解bootstrap3-dialog-master模態框用法

巴扎黑
巴扎黑原創
2017-08-23 14:07:231908瀏覽

這篇文章主要為大家詳細介紹了bootstrap3-dialog-master模態框的使用方法,具有一定的參考價值,有興趣的小夥伴們可以參考一下

 bootstrap3-dialog-master是一款高效,靈活的模態框,此處為基本知識!

1、原始碼位址

https://github.com/nakupanda/bootstrap3-dialog

2、效果顯示

#3、範例程式碼
所需引入的js和css


#
<link rel="stylesheet" type="text/css" href="css/bootstrap-dialog.css" rel="external nofollow" > 
    <link rel="stylesheet" type="text/css" href="css/bootstrap.css" rel="external nofollow" > 
    <script type="text/javascript" src="js/jquery-1.11.3.js"></script> 
    <script type="text/javascript" src="js/bootstrap.js"></script> 
    <script type="text/javascript" src="js/bootstrap-dialog.js"></script>

初始化


<button type="button" id="tm" class="btn btn-primary" style="margin: 100px;">
<span class="glyphicon glyphicon-remove" aria-hidden="true">
</span>点我</button>

 js實作程式碼


<script > 
    $(function(){ 
           
      $(&#39;#tm&#39;).on(&#39;click&#39;,function(){ 
 
            BootstrapDialog.show({ 
              type : BootstrapDialog.TYPE_DANGER, 
              message: &#39;你确定要删除吗?&#39;, 
              size : BootstrapDialog.SIZE_NORMAL, 
              buttons: [{ 
              label: &#39;确定&#39;, 
              action: function(dialog) { 
              dialog.close(); 
              } 
              }, { 
              label: &#39;取消&#39;, 
              action: function(dialog) { 
              dialog.close(); 
              } 
              }] 
            }); 
        })  
     })  
</script>

以上是詳解bootstrap3-dialog-master模態框用法的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn