关于模态框的引入

第一步 : 在jsp中引入jQuery.js

第二步:引入模态框的相关js:例如(

      <!-- 新 Bootstrap 核心 CSS 文件 -->
    <link rel="stylesheet" href="//cdn.bootcss.com/bootstrap/3.3.5/css/bootstrap.min.css">
    <!-- 可选的Bootstrap主题文件(一般不用引入) -->
    <link rel="stylesheet" href="//cdn.bootcss.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
    <!-- 最新的 Bootstrap 核心 JavaScript 文件 -->
     <script src="//cdn.bootcss.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>

)这几个js就可以了。

第三部 :在jsp</html>也就是在jsp的末尾添加一个<div> 例如:(

</html>
<!-- 模态框 -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
  <div class="modal-dialog modal-sm" 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">&times;</span></button>
        <h4 class="modal-title" id="myModalLabel">添加用户</h4>
      </div>
      <div class="modal-body">
       <table class="table table-bordered" height="50" width="60" border="0"
                    cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
       <tr>
                    <td><input type="hidden" id="id"></td>
               </tr>
      <tr>
        <td align="center">用户<br>姓名:</td>
        <td height="20"><input name="name" type="text" id="name" size="20" value="">
          * </td>
      </tr>
      
       <tr>
        <td align="center">用户<br>昵称:</td>
        <td height="20"><input name="niceName" type="text" id="niceName" size="20" value="">
          * </td>
      </tr>
      
      
        <tr>
        <td align="center">用户年龄:</td>
        <td><input name="age" type="text" id="age" size="20" value=""></td>
      </tr>
      
      <tr>
        <td align="center">用户简介:</td>
        <td>
            <input type="text" id="credential" name="credential"value="" >
        
        
        </td>
      </tr>
       </table>
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-default" data-dismiss="modal" id="close">关闭</button>
        <button type="button" class="btn btn-primary" id="save">保存</button>
      </div>
    </div>
  </div>
</div>
)里面的内容随便修改 一些特别的属性不要去修改。

第四部:一个触发事件,也就是点击弹出模态框。例如(<a class="button border-yellow button-little"   data-toggle="modal" data-target="#myModal">添加用户</a>)

做完这四部 你会发现一个新的模态框就出现了。

时间: 2024-10-13 06:18:34

关于模态框的引入的相关文章

bootstrap模态框使用

需要引入的相关内容点击下载 <html><%@ page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %><head> <title>BootStrap</title> <link rel="stylesheet" href="bootstrap.min.css"> <scr

【AmazeUI】在模态框中嵌入表单,形成模态输入框

在<[AmazeUI]模态框>(点击打开链接)一文中,已经介绍过在AmazeUI这个手机版前端框架中,怎么使用模态框了,但是这篇文章提到的模态框只是那些单纯的模态框.如果要实现一个有表单,同时又有"提交"与"关闭"的按钮,要做出如下的效果,哪应该怎么实现呢? 首先同样是HTML布局: <!--使用HTML5开发--> <!doctype html> <html class="no-js"> <

多功能万能模态框插件,项目实用,持续更新中...

附github地址 https://github.com/pomelott/jquery-plug-in 模态框(modelBox) 使用方法 1.引入css文件(建议复制粘贴至项目css文件中) 2.引入js文件(建议使用发布的压缩版,需引入jquery) 3.创建模态框对象,并传入参数. 参数说明 num:0 *必填 模态框索引:自定义整形数字(创建多个模态框时用以区分) cover:true 是否显示遮罩层:ture(有),false(没有),默认为true pos:"center&quo

Bootstrap 模态框(也可以说的弹出层)

最近在尝试使用bootstrap的模态框 使用模态框主要要引入一下几个js和css: bootstrap.css jquery.1.9.1.js(这个可以灵活选择) bootstrap.js html页面的写法如下: <link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.css"> <script src="bootstrap/js/j

去除BOOTSTRAP模态框半透明阴影

当使用bootstrap模态框默认自带半透明阴影,如果想要去除阴影,需要怎么做呢? 今天在项目中我遇到了这个问题,想要去除模态框的阴影,试了好久都没解决.后来问同事的时候才知道,当模态框弹出后,会加上这样一句代码: <div class="modal-backdrop  in"></div> 案例:自带半透明阴影的模态框 1 <!DOCTYPE html> 2 <html> 3 4 <head> 5 <meta char

Bootstrap模态框简单学习

前言 单个还是全部引入 插件可以单个引入(使用Bootstrap提供的单个*.js文件),或一次性全部引入(使用bootstrap.js或压缩版的bootstrap.min.js). 不要将两份文件全部引入 bootstrap.js和bootstrap.min.js同样是包含了所有插件.区别是:一个没有压缩,一个进行了压缩. 插件之间的依赖 某些插件和CSS组件依赖于其它插件.如果你是单个引入每个插件的,请确保在文档中检查插件之间的依赖关系.注意,所有插件都依赖jQuery(也就是说,jQuer

使用bootstrap的插件实现模态框效果方法步骤详解

本文和大家分享的主要是使用bootstrap 库的模态框插件 modal.js 来实现模态框效果相关内容,同时也使大家进一步熟悉 bootstrap 的插件使用,一起来看看吧,希望对大家学习bootstrap有所帮助. 一. bootstrap 的 js 插件的简单介绍 1.引入 我们在使用 bootstrap 库时,引入的文件 bootstrap.js 或者 bootstrap.min.js 就是 bootstrap的插件文件,这两种文件都集成了 bootstrap 的所有插件,区别在于 *.

【js】再谈移动端的模态框实现

移动端模态框的机制因为与PC的模态框机制一直有所区别,一直是许多新人很容易踩坑的地方,最近笔者作为一条老咸鱼也踩进了一个新坑中,真是平日里代码读得太粗略,故而写上几笔,以儆效尤. 故事的起因是这样的,兄弟团的童鞋的页面出现了模块框内需要滚动元素的需求,但是实际情况是他调试了很久,却没有找到确定的解决问题,这也引起了笔者的注意,虽然有现成的组件,但是因为相关代码是有一些历史的了,并没有迁移,于是笔者就和他以前联调了一番. 我们知道常见的pc端模块框阻止滚动的方式是在html或者body标签上添加o

angular $modal 模态框

<!doctype html><html lang="en"><head> <meta charset="UTF-8"> <link rel="stylesheet" href="http://apps.bdimg.com/libs/bootstrap/3.2.0/css/bootstrap.min.css"> <script src="http://