我在我的java spring mvc项目中使用了bootstrap。 但是当我点击编辑按钮时,所有的引导程序调用都被禁用。 这是我的编辑按钮。
<h3>Schedule List</h3>
<c:if test="${!empty listOfSchedules}">
<table class="table table-striped">
<tr>
<th width="80">Id</th>
<th width="120">Schedules Name</th>
<th width="120">Schedule Duration</th>
<th width="120">Schedule Discreption</th>
<th width="60">Edit</th>
<th width="60">Delete</th>
</tr>
<c:forEach items="${listOfSchedules}" var="schedule">
<tr>
<td>${schedule.schedules_id}</td>
<td>${schedule.schedule_name}</td>
<td>${schedule.duration}</td>
<td>${schedule.discreption}</td>
<td><a class="btn btn-success btn-lg active" role="button"
href="<c:url value='/updateSchedules/${schedule.schedules_id}' />">Edit</a></td>
<td><a class="btn btn-danger btn-lg active" role="button"
href="<c:url value='/deleteSchedules/${schedule.schedules_id}' />">Delete</a></td>
</tr>
</c:forEach>
</table>
</c:if>
&#13;
这段代码有什么问题.. ???