bootstrap4模态框的使用

这篇博客介绍了如何使用Bootstrap的模态框组件,包括基本的创建触发和高级的事件绑定。通过`data-toggle`和`data-target`属性实现按钮触发模态框显示,模态框内容包含确认信息和关闭按钮。此外,展示了如何在模态框隐藏和显示时绑定自定义事件,例如在模态框关闭时打印'123'。
摘要由CSDN通过智能技术生成

基本使用:

创建触发标签:

data-toggle=“modal” (模态框)
data-target="#exampleModal"(对应着模态框的id)

<button type="button" data-toggle="modal" data-target="#exampleModal" class="btn mt-5 save">保存</button>

模态框:

id="exampleModal"需要和上方id保持一致

<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
		<div class="modal-dialog modal-dialog-centered modal-sm">
			<div class="modal-content">
				<div class="modal-body">
					<div class="container-fluid">
						<div class="row">
							<div class="col-12 text-center">
								<h4 class="modal_text">文件上传成功</h4>

							</div>
						</div>
					</div>
				</div>
				<div class="modal-footer d-flex justify-content-center border-0">
					<button type="button" class="btn btn-primary d-inline-block" data-dismiss="modal">确定</button>
				</div>
			</div>
		</div>
	</div>

此时点击按钮就会弹出模态框。

高级使用:

因为模态框在启动或者关闭时会有短时间的过度动画,所以可以进行你希望的事件绑定
// 在模态框显示后,触发关闭时打印123
$("#exampleModal").on(‘hide.bs.modal’, function() {
console.log(‘123’);
})
// 在模态框显示后,触发关闭时模态框消失时 打印123
$("#exampleModal").on(‘hidden.bs.modal’, function() {
console.log(‘123’);
})
// 在点击模态框按钮后,触发显示时 打印123
$("#exampleModal").on(‘show.bs.modal’, function() {
console.log(‘123’);
})
// 在点击模态框按钮后,触发显示且模态框已经完全显示 打印123
$("#exampleModal").on(‘shown.bs.modal’, function() {
console.log(‘123’);
})

这是一个基于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、付费专栏及课程。

余额充值