この記事では主に bootstrap3-dialog-master モーダル ボックスの使い方を詳しく紹介します。興味のある方は参考にしてください。
bootstrap3-dialog-master は効率的で柔軟なモーダル ボックスです。基礎! 1.ソースコードアドレス
<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(){ $('#tm').on('click',function(){ BootstrapDialog.show({ type : BootstrapDialog.TYPE_DANGER, message: '你确定要删除吗?', size : BootstrapDialog.SIZE_NORMAL, buttons: [{ label: '确定', action: function(dialog) { dialog.close(); } }, { label: '取消', action: function(dialog) { dialog.close(); } }] }); }) }) </script>
以上がbootstrap3-dialog-masterモーダルボックスの使い方の詳細説明の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。