AdminLTE3框架下的BootStrapModal模态框直接贴出栗⼦:⾥⾯有注解:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>SSM | Modal Test</title>
<!-- Tell the browser to be responsive to screen width -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Font Awesome -->
<link rel="stylesheet" href="dist/css/font-awesome.min.css">
<!-- Ionicons -->
<link rel="stylesheet" href="dist/css/ionicons.min.css">
<!-- Theme style -->
<link rel="stylesheet" href="dist/css/adminlte.min.css">
<link href="leapis/css?family=Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
</head>
<body class="hold-transition login-page">
<div >
<div class="content">
<button class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">
直接创建模态框1
</button>
<br>
jquery框架定义
<br>
<button class="btn btn-primary btn-lg" onclick="jsOpenModal()">
js打开模态框1
</button>
<br>
<br>
<button class="btn btn-primary btn-lg" onclick="jsOpenModal2()">
js打开模态框2
</button>
<!-- 模态框(Modal) -->
<!--
.modal,⽤来把 <div> 的内容识别为模态框。
.fade class。当模态框被切换时,它会引起内容淡⼊淡出。
aria-labelledby="myModalLabel",该属性引⽤模态框的标题。
aria-hidden="true" ⽤于保持模态窗⼝不可见,直到触发器被触发为⽌
<div class="modal-header">,modal-header 是为模态窗⼝的头部定义样式的类
class="close",close 是⼀个 CSS class,⽤于为模态窗⼝的关闭按钮设置样式。
data-dismiss="modal",是⼀个⾃定义的 HTML5 data 属性。在这⾥它被⽤于关闭模态窗⼝。
class="modal-body",是 Bootstrap CSS 的⼀个 CSS class,⽤于为模态窗⼝的主体设置样式。
class="modal-footer",是 Bootstrap CSS 的⼀个 CSS class,⽤于为模态窗⼝的底部设置样式。
data-toggle="modal",HTML5 ⾃定义的 data 属性 data-toggle ⽤于打开模态窗⼝。
注意点弹出框外⾯或者esc可以直接退出弹出框
-->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel"
aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title" id="myModalLabel">
模态框(Modal)标题
</h4>
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">
×
</button>
</div>
<div class="modal-body">
在这⾥添加⼀些⽂本
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">关闭
</button>
<button type="button" class="btn btn-primary">
提交更改
</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal -->
</div>
<div class="modal fade" id="myModal2" tabindex="-1" role="dialog" aria-labelledby="myModalLabel2"            aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title" id="myModalLabel2">
模态框2
</h4>
</div>
<div class="modal-body">
<form>
<div class="form-group">
<label for="type" class="control-label">type:</label>
<input type="text" class="form-control" id="type">
</div>
<div class="form-group">
<label for="style" class="control-label">style:</label>
<input type="text" class="form-control" id="style">
</div>
<div class="form-group">
<label for="content" class="control-label">content:</label>
<input type="text" class="form-control" id="content">
</div>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary">
提交更改
</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal -->
</div>
</div>
</div>
<!-- jQuery -->
<script src="plugins/jquery/jquery.min.js"></script>
<!-- Bootstrap 4 -->
<script src="plugins/bootstrap/js/bootstrap.bundle.min.js"></script>
<script type="text/javascript">
$(function () {
$('#myModal').on('dal',
function () {
alert('aaaa在调⽤ show ⽅法后触发。');
});
$('#myModal').on('dal',
function () {
alert('当调⽤ hide 实例⽅法时触发。');
})
$('#myModal').on('dal',
function () {
alert('当模态框对⽤户可见时触发(将等待 CSS 过渡效果完成)。。');
});
$('#myModal').on('dal',
alert('当模态框完全对⽤户隐藏时触发。');
})
});
function jsOpenModal() {
$('#myModal').modal('show');//⼿动打开模态框。
}
function jsOpenModal2() {
$('#myModal2').modal('toggle');//⼿动切换模态框。还有⼀个modal('hide') ⼿动隐藏模态框。    }
</script>
</body>
</html>

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。