Bootstrap Modal-静态框使用及遇到的问题

2019-04-14 08:35发布

https://blog.csdn.net/wusd1256/article/details/77880033
Bootstrap Modals 是使用的定制的JQuery 插件创建的,下面是使用方法:1.1:导入对应的js。css,需要导入bootstrap.js或者bootstrap.min.js文件,bootstrap的前提是jQuery,所以我们要导入jquery.min.js对应导入代码:[cpp] view plain copy
  1.   
  2. "Bootstrap/css/bootstrap-theme.css" rel="stylesheet"/>  
  3. "Bootstrap/css/bootstrap-theme.min.css" rel="stylesheet" />  
  4. "Bootstrap/css/bootstrap.css" rel="stylesheet"/>  
  5. "Bootstrap/css/bootstrap.min.css" rel="stylesheet"/>  
  6.   
  7. "jquery/jquery-3.1.1.min.js">  
  8. "Bootstrap/js/bootstrap.min.js">  
[cpp] view plain copy
  1.   
[cpp] view plain copy
  1. 1.2:具体用法有2种  
1、通过 data 属性:在控制器元素(比如按钮或者链接)上设置属性 data-toggle="modal",同时设置 data-target="#identifier" 或 href="#identifier" 来指定要切换的特定的模态框(带有 id="identifier")。demo如下:[java] view plain copy
  1. 创建模态框(Modal)

      
  2.   
  3. class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">开始演示模态框  
  4.   
  5. class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">  
  6.   class="modal-dialog">  
  7.     class="modal-content">  
  8.       class="modal-header">  
  9.         "button" class="close" data-dismiss="modal" aria-hidden="true">×  
  10.         class="modal-title" id="myModalLabel">模态框(Modal)标题  
  11.       
  
  •       class="modal-body">在这里添加一些文本
  •   
  •       class="modal-footer">  
  •         "button" class="btn btn-default" data-dismiss="modal">关闭  
  •         "button" class="btn btn-primary">提交更改  
  •       
  •   
  •     
  •   
  •   
  •   
  •   
    2、通过 JavaScript:使用这种技术,您可以通过简单的一行 JavaScript 来调用带有 id="identifier" 的模态框:$('#identifier').modal(options)demo:[java] view plain copy
    1. $(function () {  
    2.     $("#btn_edit").click(function () {  
    3.        
    4.         $("#myModal").modal("show");  
    5.         console.log("打开静态框");  
    6.     });  
    7. })  


    遇到的问题:用js的方式调用,打开modal静态框的时候一直包下面的错误,Infographic.js:176 Uncaught TypeError: $(...).modal is not a function
        at HTMLButtonElement. (Infographic.js:176)
        at HTMLButtonElement.dispatch (jquery.min.js:3)
        at HTMLButtonElement.r.handle (jquery.min.js:3)
    解决方案:上面的问题主要是包的引入问题,要确保上面的包多已经引入,我就是在引入jquery包时,引入了2个重复的包,去掉其中的一个,问题解决了。


    热门文章