我是bootstrap表的新手。正在试用一个非常基本的表格的Bootstrap表文档。
目前我指的是http://bootstrap-table.wenzhixin.net.cn/examples/
我尝试包含jquery,bootstrap和bootstrap-table脚本文件以及文档中提到的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" >
脚本文件:
<!--Jquery-->
<script src="https://code.jquery.com/jquery-1.11.0.min.js"></script>
<!--Bootstrap-->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>\
<!--Bootstrap Tables-->
<script type="text/javascript" src="js/bootstrap-table.min.js"></script>
并包含HTML代码:
<table id="table">
<thead>
<tr>
<th data-field="name">Name</th>
<th data-field="stargazers_count">Stars</th>
<th data-field="forks_count">Forks</th>
<th data-field="description">Description</th>
</tr>
</thead>
</table>
使用Javascript加载数据。
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
});
});
但是我在控制台上收到以下错误:
请帮我解决一下这个。 感谢
答案 0 :(得分:1)
写这个
<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>
JS for Bootstrap-table已被更改。
答案 1 :(得分:1)
检查bootstrap-table.js的内容。 我得到了和你一样的错误,在检查内容时它是一个HTML文档。 打开bootstrap-table.js并确保内容为js。它看起来应该是这样的。
https://raw.githubusercontent.com/wenzhixin/bootstrap-table/master/src/bootstrap-table.js
更新内容后,它就像魅力一样!