bootstrap实现点击删除按钮弹出确认框的实例代码
具体代码如下所示:
<%@ page language="java" import="com.student.servlet.*" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@page import="java.util.*" import="com.student.vo.User"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<link rel="stylesheet" href="bootstrap/bootstrap.min.css" rel="external nofollow" />
<script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
<script src="bootstrap/bootstrap.min.js"></script>
</head>
<body>
<script type="text/javascript">
$('#myModal').on('shown.bs.modal', function () {
$('#myInput').focus()
})
</script>
<button type="button" class="btn btn-danger" data-toggle="modal" data-target="#exampleModal" data-whatever="@mdo">删除</button>
<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="exampleModalLabel">确认框</h4>
</div>
<div class="modal-body">
<form>
<div class="form-group">
<label for="message-text" class="control-label">确定要删除联系人?</label>
</div>
</form>
</div>
<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>
</div>
</div>
</body>
</html>
总结
以上所述是小编给大家介绍的bootstrap实现点击删除按钮弹出确认框的实例代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对北冥有鱼编程技术建站教程网站的支持!
您可能感兴趣的文章:
- 在iframe中使bootstrap的模态框在父页面弹出问题
- Bootstrap弹出框之自定义悬停框标题、内容和样式示例代码
- Bootstrap的popover(弹出框)2秒后定时消失的实现代码
- 扩展bootstrap的modal模态框-动态添加modal框-弹出多个modal框
- Bootstrap实现提示框和弹出框效果
- Bootstrap实现带动画过渡的弹出框
- Bootstrap编写一个在当前网页弹出可关闭的对话框 非弹窗
- Bootstrap弹出框(modal)垂直居中的问题及解决方案详解
- 关于Bootstrap弹出框无法调用问题的解决办法
- JS组件Bootstrap实现弹出框和提示框效果代码