1
在我的JSP頁面中,我遍歷學生列表並在父頁面上顯示它們,當我按下「刪除」或「編輯」按鈕時,它應該設置爲studentID的參數之一,必須編輯/刪除,但將其設置爲參數既studentID's.Here是代碼和一些PIC的:JSP <c:foreach>選擇參數設置
<c:forEach var="thisStudent" items="${studentList}">
<form:hidden path="studentID" value="${thisStudent.studentID}"/>
<div class="panelheader">
<p>${thisStudent.userName}</p>
</div>
<div class="panel panel-default">
<div class="panel-body fixed-panel">
<div class="childinfo">
<img src="resources/images/Matildacircle.png" class="center-block">
<p>${thisStudent.firstName}</p>
<p>Points ${thisStudent.rewardPoints} </p>
<BR>
<button type="button" class="btn btn-default center-block redeembtn">Redeem</button>
</div>
</div>
<div class="panel-footer clearfix">
<div class="pull-left">
<button id="removeStudent" type="submit" name="action" value="removeStudent" style="color: #32B2B2">remove</button> <span class="colortext">|</span>
<button id="editStudent" type="submit" name="action" value="editStudentInfo" style="color: #32B2B2">edit</button>
</div>
</div>
</div>
</c:forEach>
感謝答覆@Roman C,但JavaScript代碼沒有執行,所以studentID沒有在參數設置。 – Popeye
爲什麼它沒有執行? –
它工作!我沒有在代碼中插入這一行(): '' 之後我做了它的工作!非常感謝!!它爲我節省了很多時間:)) –
Popeye