bootstrap弹出层的多种触发方式

前端之家收集整理的这篇文章主要介绍了bootstrap弹出层的多种触发方式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

bootstrap弹出层有多种触发方式,以下是我用到的几种方式:

1.方法一:

button中属性触发

注意:button中的data-target内容应该和要和弹出层中的id保持一致 data-target=”#mymodal-data”——– id=”mymodal-data”

<div class="modal" id="mymodal-data" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">
<span aria-hidden="true">×
<span class="sr-only">Close

结果:

这里写图片描述

2.方法二:

通过js绑定

注意:将button的id和弹出层的id分别赋给 $m_btn和$modal,当$m_btn被点击后$modal弹出。

<div class="modal" id="y-myModalAdd" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">
<span aria-hidden="true">×
<span class="sr-only">Close

结果:

这里写图片描述

这里写图片描述

bootstrap的弹出层在整个屏幕的上半部分,可以将它居中显示。(方法二可以让弹出层居中显示

代码将弹出层上下也居中了,但是会抖 动一下 $modal.on('shown.bs.modal',function(){ var $this = $(this); var $modal_dialog = $this.find('.modal-dialog'); var m_top = ( $(document).height() - $modal_dialog.height() )/2; $modal_dialog.css({'margin': m_top + 'px auto'}); }); });

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程之家。

原文链接:https://www.f2er.com/bootstrap/39402.html
bootstrapbootstrap弹出层

猜你在找的Bootstrap相关文章