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实现弹出框和提示框效果代码

相关推荐:

Arthas Bootstrap的源代码示例分析

今天就跟大家聊聊有关ArthasBootstrap的源代码示例分析,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。Arthas(阿尔萨斯,https://github.com/alibaba/arthas)是Alibaba开源的一款Java诊断...

bootstrap日期控件问题(双日期、清空等问题解决)

bootstrap以它优美的外观和丰富的组件,使它成为目前最流行的前端框架。在项目开发中,我们使用它的日期控件确实遇到了一些问题:     1.日期控件后面两个图标点击触发失效     2.双日期关联问题     3.双日期清空时,之前输入日期关联仍然有效     4.输入年月     5.图标不显...

怎么使用bootstrap树状菜单

怎么使用bootstrap树状菜单?相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。  bootstrap-treeview.js是一款强大的树菜单插件,本文演示bootstrap-treeview.js的调用方法。它可...

Bootstrap CSS语法编码规范有哪些

这篇文章主要讲解了“BootstrapCSS语法编码规范有哪些”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“BootstrapCSS语法编码规范有哪些”吧!1.用两个空格来代替制表符(tab)--这是唯一能保证在所有环境下获得一致展现的方法。2.为选...

如何在vue中引入bootstrap

这篇文章将为大家详细讲解有关如何在vue中引入bootstrap,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。为什么要使用VueVue是一款友好的、多用途且高性能的JavaScript框架,使用vue可以创建可维护性和可测试性更强的代码库,Vue允许...

vue中引入jQuery和Bootstrap的方法

小编给大家分享一下vue中引入jQuery和Bootstrap的方法,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!一、引入jQuery在当前项目的目录下(就是package.json),运行命令cnpminstalljqu...

vue-cli怎么引入bootstrap工具的方法

小编给大家分享一下vue-cli怎么引入bootstrap工具的方法,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!以下操作以正常安装node环境为前提。1.引入jq:在npm控制台中,进入项目目录,然后输入指令npminstalljquery--save-dev(npm换成cnpm...