不知道是不是引用错了还是缺什么东西
<section>
<table id="bootstrap-table" data-toggle="table" data-query-params="queryParams" data-toolbar="#toolbar"
data-pagination="true"
data-search="true"
data-show-refresh="true"
data-show-toggle="true"
data-show-columns="true"
data-page-size="10">
<thead>
<tr>
<th>学号</th>
<th>姓名</th>
<th>年龄</th>
<th>手机号</th>
<th>专业班级</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<%
StudentSever studentSever = new StudentSever();
Vector<Vector<Object>> data=studentSever.printallstudent();
for(Vector<Object> vector:data){
String number= String.valueOf(vector.get(0));
%>
<tr>
<th><%= number %></th>
<th><%= vector.get(1) %></th>
<th><%= vector.get(2) %></th>
<th><%= vector.get(3) %></th>
<th><%= vector.get(4) %></th>
<th>
<a href="<%=request.getContextPath()%>/mainServlet?type=toUpdate&number=<%= number%>" accept-charset="UTF-8">修改</a>
<a href="<%=request.getContextPath()%>/mainServlet?type=delete&number=<%= number%>"accept-charset="UTF-8" onclick="return confirm('确定要删除吗?') ">删除</a>
</th>
</tr>
<%
}
%>
</tbody>
</table>
</section>