Bootstrap

作者: 静心安分读书 | 来源:发表于2018-01-23 14:19 被阅读5次

18.1.25
hidden.bs.modal的意思就是当弹出的模态框消失的时候,接下来回调的函数。
$("#modal").on('hidden.bs.modal',function(){
alert(1);
$( '#modal' ).off().on( 'hidden', 'hidden.bs.modal');
})

——————————
18.1.23
modal模态框,
<div class="modal fade" id="projectMonitorDetail" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
aria-hidden="true"表示一开始这个div元素中的内容是隐藏的。
一旦被触发就当做弹窗显示。
http://www.runoob.com/bootstrap/bootstrap-modal-plugin.html
这里不错,有空整理学习一下。

相关文章

网友评论

      本文标题:Bootstrap

      本文链接:https://www.haomeiwen.com/subject/aossaxtx.html