listUser.js:3 Uncaught TypeError: $(...).bootstrapTable is not a function

Posted 时光-ing

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了listUser.js:3 Uncaught TypeError: $(...).bootstrapTable is not a function相关的知识,希望对你有一定的参考价值。

报错内容:
Uncaught TypeError: $(…).bootstrapTable is not a function.

解决办法:
我遇到的问题是因为只引入了 bootstrap.js 而 bootstrap-table.js 没有正常的引入,引入下方js即可。

 <script src="https://cdn.bootcdn.net/ajax/libs/bootstrap-table/1.21.0/bootstrap-table.js"></script>

除此之外,还可能遇到另一个问题:JS的引入顺序也可能导致报错。
应该按如下顺序引入jquery、bootstrap、bootstrap-table,如下所示:

<script src="/libjs/GA/vendors/jquery/dist/jquery.min.js"></script>
<script src="/libjs/GA/vendors/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
<script src="/libjs/GA/vendors/bootstrap-progressbar/bootstrap-progressbar.min.js"></script>
<script src="https://cdn.bootcdn.net/ajax/libs/bootstrap-table/1.21.0/bootstrap-table.js"></script>

以上是关于listUser.js:3 Uncaught TypeError: $(...).bootstrapTable is not a function的主要内容,如果未能解决你的问题,请参考以下文章

Uncaught (in promise)

Uncaught (in promise):消息端口在收到响应之前关闭

出现错误 - Uncaught (in promise) DOMException: play() failed 因为用户没有先与文档交互

AngularJS Uncaught SyntaxError: Unexpected token :

解决Uncaught (in promise) reason的问题

解决Uncaught (in promise) reason的问题