Javascript 控制台中出现错误的引导表

Javascript 控制台中出现错误的引导表,javascript,jquery,html,twitter-bootstrap,Javascript,Jquery,Html,Twitter Bootstrap,我不熟悉引导表。正在尝试一个非常基本的表的引导表文档 目前我指的是 我试图包括jquery、引导和引导表脚本文件以及文档中提到的css <!-- Latest compiled and minified CSS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css"> <!-- Bootstrap Table CSS

我不熟悉引导表。正在尝试一个非常基本的表的引导表文档

目前我指的是

我试图包括jquery、引导和引导表脚本文件以及文档中提到的css

<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
<!-- Bootstrap Table CSS -->
<link href="css/bootstrap-table.min.css" rel="stylesheet" >
但我在控制台上遇到以下错误:

请帮我做这个。 谢谢你写这封信

<script type="text/javascript" src="https://rawgit.com/wenzhixin/bootstrap-table/master/src/bootstrap-table.js"></script>

而不是

<script type="text/javascript" src="js/bootstrap-table.min.js"></script>


Bootstrap表的JS已更改。

检查Bootstrap-table.JS的内容。 我得到了与您相同的错误,在检查内容时,它是一个HTML文档。 打开bootstrap-table.js并确保内容是js。应该是这样的


更新内容后,它就像一个魅力

您不需要这个
,因为它已经包含在
bootstrap.min.js
中,谢谢。我也这么做了。
var data = [
    {
        "name": "bootstrap-table",
        "stargazers_count": "526",
        "forks_count": "122",
        "description": "An extended Bootstrap table with radio, checkbox, sort, pagination, and other added features. (supports twitter bootstrap v2 and v3) "
    },
    {
        "name": "multiple-select",
        "stargazers_count": "288",
        "forks_count": "150",
        "description": "A jQuery plugin to select multiple elements with checkboxes :)"
    },
    {
        "name": "bootstrap-show-password",
        "stargazers_count": "32",
        "forks_count": "11",
        "description": "Show/hide password plugin for twitter bootstrap."
    },
    {
        "name": "blog",
        "stargazers_count": "13",
        "forks_count": "4",
        "description": "my blog"
    },
    {
        "name": "scutech-redmine",
        "stargazers_count": "6",
        "forks_count": "3",
        "description": "Redmine notification tools for chrome extension."
    }
];

$(function () {
    $('#table').bootstrapTable({
        data: data
    });
});
<script type="text/javascript" src="https://rawgit.com/wenzhixin/bootstrap-table/master/src/bootstrap-table.js"></script>
<script type="text/javascript" src="js/bootstrap-table.min.js"></script>