bootstrap模态框自动弹出与手动弹出详解

bootstrap模态框自动弹出功能与js 无关,手动弹出则需要js去控制

两者的区别:自动弹出需要在按钮多设置一个data-target属性target到模态框的id , JS控制弹出的话需要在按钮加个click事件$("#Mymodal").modal("show"),关闭时还是要手动关闭$("#Mymodal").modal("hide")


1.bootstrap模态框自动弹出演示

<!doctype html>  
<html>  
<head>  
<meta charset="utf-8">  
<title>bootstrap 弹出模态框</title>  
<link rel="stylesheet" href="bootstrap-3.3.5-dist/css/bootstrap.css">  
<script src="bootstrap-3.3.5-dist/js/jquery-2.1.4.min.js"></script>  
<script src="bootstrap-3.3.5-dist/js/bootstrap.js"></script> 
<script>
	$(document).ready(function(){
		$("#Mymodal").click(function(){
			$("#new").modal("show")
		})
	})
	</script> 
</head>  
<body>  
<button class="btn btn-success" data-toggle="modal" data-target="#new"> //多了data-target="#new"

 <span style="color:#ff0000;"></span>
自动弹出模态框
 </button>  
 
 <button class="btn btn-success" data-toggle="modal" id="Mymodal" >//没有data-target属性,但是有上面的JS  click事件

 <span style="color:#ff0000;"></span>
js控制弹出模态框
 </button> 
  
 <div class="modal fade" id="new">
            <div class="modal-dialog">  
              <div class="modal-content">  
                <div class="modal-header"> Create a new user </div>  
                <form class="form-horizontal">  
                  <div class="modal-body">  
                    <div class="form-group">  
                      <label for="inputEmail" class="col-sm-2 control-label">Email</label>  
                      <div class="col-sm-10">  
                        <input id="inputEmail" type="text" class="form-control list-inline" placeholder="Email"/>  
                      </div>  
                    </div>  
                    <div class="form-group">  
                      <label for="inputpwd" class="col-sm-2 control-label">Password</label>  
                      <div class="col-sm-10">  
                        <input id="inputpwd" type="text" class="form-control list-inline" placeholder="Password"/>  
                      </div>  
                    </div>  
                    <div class="form-group">  
                      <label for="inputUsername" class="col-sm-2 control-label">Username</label>  
                      <div class="col-sm-10">  
                        <input id="inputUsername" type="text" class="form-control list-inline" placeholder="Username"/>  
                      </div>  
                    </div>  
                    <div class="form-group">  
                      <label for="inputBirthday" class="col-sm-2 control-label">Birthday</label>  
                      <div class="col-sm-10">  
                        <input id="inputBirthday" type="text" class="form-control list-inline" placeholder="Birthday"/>  
                      </div>  
                    </div>  
                  </div>  
                </form>  
                <div class="modal-footer">  
                  <button class="btn btn-success" type="submit">Save</button>  
                  <button class="btn btn-warning" type="reset">Reset</button>  
                  <button class="btn btn-danger" data-dismiss="modal">Cancel</button>  
                </div>  
              </div>  
            </div>  
          </div>  
  
</body>  
</html>  

  • 10
    点赞
  • 22
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
这是一个基于Bootstrap 4的模态框效果的示例代码: HTML代码: ```html <!-- 模态框按钮 --> <button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal"> 弹模态框 </button> <!-- 模态框窗口 --> <div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel"> <div class="modal-dialog modal-dialog-centered" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="myModalLabel">模态框标题</h5> <button type="button" class="close" data-dismiss="modal" aria-label="关闭"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <p>这里是模态框的内容</p> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-dismiss="modal">关闭</button> <button type="button" class="btn btn-primary">保存</button> </div> </div> </div> </div> ``` CSS代码: ```css /* 设置模态框窗口的样式 */ .modal-dialog { max-width: 600px; } /* 设置模态框标题的样式 */ .modal-header { background-color: #007bff; color: #fff; } /* 设置模态框关闭按钮的样式 */ .modal-header .close { color: #fff; } /* 设置模态框保存按钮的样式 */ .modal-footer .btn-primary { background-color: #007bff; border-color: #007bff; } /* 设置模态框关闭按钮和保存按钮之间的间距 */ .modal-footer .btn-secondary { margin-right: 10px; } ``` JavaScript代码: ```javascript // 初始化模态框 $('#myModal').modal({ backdrop: 'static', keyboard: false, show: false }); ``` 这段代码中,我们使用了Bootstrap 4的模态框组件来实现弹效果。我们首先创建了一个按钮,设置了data-toggle和data-target属性,这两个属性用于触发模态框的弹。然后,我们创建了一个模态框的弹窗口,设置了id属性和aria-labelledby属性,这两个属性用于指定模态框的唯一标识和标题。在模态框的弹窗口中,我们分别创建了模态框的标题、内容和底部按钮。最后,我们使用JavaScript代码来初始化模态框,设置了backdrop、keyboard和show属性,这些属性用于控制模态框的行为。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值