当我尝试在我的spring mvc应用程序中更新数据时,它的引导样式被禁用

时间:2018-06-09 11:30:41

标签: spring-mvc bootstrap-4

我在我的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;
&#13;
&#13; 在单击编辑按钮之前 enter image description here

单击“编辑”按钮后 enter image description here

单击编辑按钮后,浏览器网络选项卡如下图所示 enter image description here

这段代码有什么问题.. ???

0 个答案:

没有答案