如何让Bootstrap Modal工作?依赖问题?

时间:2018-04-04 09:59:41

标签: jquery html html5 bootstrap-4

因此,我尝试使用自举模式进行实验,并认为查看示例是如何完成的,这将是一个很好的起点,但它似乎并没有在我的设置中工作,而是在地方工作喜欢:https://www.bootply.com/rM2HVSUOtz#

我的代码如下,我很确定我没有正确引用jquery和bootstrap依赖项,但是有很多解决方案,没有解释如何知道你需要什么......



<html>
    <script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<!--CB-modal -->
<!-- Button trigger modal --><!-- Button trigger modal -->
<button class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">
    Launch demo modal
  </button>
  
  <!-- Modal -->
  <div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
    <div class="modal-dialog">
      <div class="modal-content">
        <div class="modal-header">
          <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
          <h4 class="modal-title" id="myModalLabel">Modal title</h4>
        </div>
        <div class="modal-body">
         <p>Testing</p>
        </div>
        <div class="modal-footer">
          <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
          <button type="button" class="btn btn-primary">Save changes</button>
        </div>
      </div>
    </div>
  </div>

<!--modal-->
<script>
$('#myModal').on('shown.bs.modal', function () {
  $('#myInput').trigger('focus')
})
</script>



</html>
&#13;
&#13;
&#13;

(代码甚至适用于此处的代码片段,但在我的项目中根本不适用)

1 个答案:

答案 0 :(得分:1)

您需要更改代码,如下所示:

run with this code https://jsfiddle.net/r68fv56g/