老师,一个新的问题
只显示出了这个,右边的没显示
我的list。jsp页面
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<jsp:include page="top.jsp"/>
<section id="content_wrapper">
<section id="content" class="table-layout animated fadeIn">
<div class="tray tray-center">
<div class="content-header">
<h2> 分类管理</h2>
<p class="lead"></p>
</div>
<div class="admin-form theme-primary mw1000 center-block" style="padding-bottom: 175px;">
<div class="panel heading-border">
<div class="panel-menu">
<div class="row">
<div class="hidden-xs hidden-sm col-md-3">
<div class="btn-group">
<button type="button" class="btn btn-default light">
<i class="fa fa-trash"></i>
</button>
<button type="button" class="btn btn-default light">
<i class="fa fa-plus" onclick="javascript:window.location.href='/admin/Catalog/toAdd.do';"></i>
</button>
</div>
</div>
</div>
</div>
<div class="panel-body pn">
<table id="message-table" class="table admin-form theme-warning tc-checkbox-1">
<thead>
<tr class="">
<th class="text-center hidden-xs">Select</th>
<th class="hidden-xs">名称</th>
<th class="hidden-xs">描述</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<c:forEach items="${root.children}" var="cat1">
<tr class="message-unread">
<td class="hidden-xs">
<label class="option block mn">
<input type="checkbox" name="mobileos" value="FR">
<span class="checkbox mn"></span>
</label>
</td>
<td>${cat1.title}</td>
<td>${cat1.info}</td>
<td>
<a href="/admin/Catalog/remove.do?id=${cat1.id}">删除</a>
</td>
</tr>
<c:forEach items="${cat1.children}" var="cat2">
<tr class="message-unread">
<td class="hidden-xs">
<label class="option block mn">
<input type="checkbox" name="mobileos" value="FR">
<span class="checkbox mn"></span>
</label>
</td>
<td style="padding-left: 50px;">${cat2.title}</td>
<td>${cat2.info}</td>
<td>
<a href="/admin/Catalog/remove.do?id=${cat2.id}">删除</a>
</td>
</tr>
<c:forEach items="${cat2.children}" var="cat3">
<tr class="message-unread">
<td class="hidden-xs">
<label class="option block mn">
<input type="checkbox" name="mobileos" value="FR">
<span class="checkbox mn"></span>
</label>
</td>
<td style="padding-left: 100px;">${cat3.title}</td>
<td>${cat3.info}</td>
<td>
<a href="/admin/Catalog/remove.do?id=${cat3.id}">删除</a>
</td>
</tr>
</c:forEach>
</c:forEach>
</c:forEach>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
</section>
<jsp:include page="bottom.jsp"/>5
收起
正在回答 回答被采纳积分+1
6回答
Mr__Gao
2019-11-23 13:10:32
还有就是,
http://…0/js/demo/demo.js Failed to load resource: the server responded with a status of 404 () utility.js:4174 Uncaught Error: Bootstrap's JavaScript requires jQuery version 1.9.1 or higher http://…0/js/demo/demo.js Failed to load resource: the server responded with a status of 404 () pages.js:9 Uncaught ReferenceError: Demo is not defined http://…n/Catalog/list.do Failed to decode downloaded font: http://localhost:8080/fonts/glyphicons/glyphicons-halflings-regular.html http://…n/Catalog/list.do OTS parsing error: Failed to convert WOFF 2.0 font to SFNT http://…n/Catalog/list.do Failed to decode downloaded font: http://localhost:8080/fonts/font-awesome/fontawesome-webfonte0a5.html?v=4.3.0 http://…n/Catalog/list.do OTS parsing error: Size of decompressed WOFF 2.0 is less than compressed size http://…:8080/favicon.ico Failed to load resource: the server responded with a status of 404 () http://…n/Catalog/list.do Failed to decode downloaded font: http://localhost:8080/fonts/glyphicons/glyphicons-halflings-regular.html http://…n/Catalog/list.do OTS parsing error: Failed to convert WOFF 2.0 font to SFNT http://…n/Catalog/list.do Failed to decode downloaded font: http://localhost:8080/fonts/font-awesome/fontawesome-webfonte0a5.html?v=4.3.0 http://…n/Catalog/list.do OTS parsing error: Size of decompressed WOFF 2.0 is less than compressed size
在页面的console出现以上信息
3. Java 数据库开发与实战应用
- 参与学习 人
- 提交作业 357 份
- 解答问题 8016 个
本阶段将带你学习MySQL数据库,JDBC接口,MyBatis框架等,带你掌握的数据的存放和管理。
了解课程
这个是所有JS的目录,还有右边对js的引用,不知道哪里修改


恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星