为了账号安全,请及时绑定邮箱和手机立即绑定

JS处理事件弹不出对话框

<head>

<link rel="stylesheet" type="text/css" href="<%=path %>/bs/css/bootstrap.min.css">

  </head>

<body>

  <button class="btn btn-primary" type="button" >按钮</button>

  <div class="modal fade hide modal-sm" id="themodal">

  <div class="modal-dialog">

  <div class="modal-content">

  <div class="modal-header">

  <button class="close" data-dismiss="modal" type="button"><span>&times;</span></button>

  <h4 class="modal-title">模式对话框3标题</h4>

  </div>

  <div class="modal-body">

  <p>模式对话框3内容!</p>

  </div>

  <div class="modal-footer">

  <button class="btn btn-default" data-dismiss="modal" type="button">关闭</button>

  </div>

  </div>

  </div>

  </div>

<script>

    $(function(){

        $(".btn").click(function(){

            $("#themodal").modal();

        });

    });

</script>

    <script type="text/javascript" src="<%=path %>/bs/jquery-1.12.4.js"></script>

    <script type="text/javascript" src="<%=path %>/bs/js/bootstrap.min.js"></script>      

  </body>

按钮有样式,但单击按钮没有反应,弹不出对话框

js、css、jquery配置如下图

https://img1.sycdn.imooc.com//5ccd74090001852602130187.jpg

正在回答

2 回答

你的方法应该在两个js后面写

0 回复 有任何疑惑可以回复我~

modal fade hide modal-sm  去掉hide  或者点击的时候。。改变modal方法应该也有用

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
玩转Bootstrap(基础)
  • 参与学习       314546    人
  • 解答问题       2275    个

告诉你使用Bootstrap,并且能够独立定制出适合自己的Bootstrap

进入课程

JS处理事件弹不出对话框

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信