/**********************************************************************
 * jQuery.Deferred exception: $.get is not a function TypeError: $.get is not a function
 * 说明:
 *     使用bootstrap的时候,遇到这个错误,是jquery库的问题。
 *
 *                                2018-3-28 深圳 宝安西乡 曾剑锋
 *********************************************************************/

一、参考文档:
    1. JQuery: $.get is not a function
        https://stackoverflow.com/questions/1956719/jquery-get-is-not-a-function

二、解决方法:
    <script src="https://code.jquery.com/jquery-3.1.1.slim.min.js"></script>
    改为:
    <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>

 

相关文章:

  • 2021-09-10
  • 2022-02-02
  • 2021-07-27
  • 2021-11-29
  • 2021-09-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-10-29
  • 2022-01-18
  • 2021-05-02
  • 2022-01-08
  • 2021-11-24
相关资源
相似解决方案