0
我試圖在我的servlet在我的數據庫上運行查詢後調出下拉框的選定值。回想下拉列表的選定值
變量沒有限制,所以我使用c:foreach
來填充下拉列表。
的代碼如下
function moduleLookup() {
var trainId = document.getElementById("Selector").value;
document.trainForm.trainId.value = trainId;
document.trainForm.submit();
}
<select id="Selector" onchange="moduleLookup()" onchange=storeValues()>
<option value="/javaTrainingServletProject/UserAdministration?id=0">Select module</option>
<option value="0">All Modules</option>
<c:forEach items="${modules}" var="module">
<option value="${module.id}">${module.title }</option>
</c:forEach>
</select>
我都想盡方法,我可以找到得到刷新下拉到具有預先選擇的值。我試圖添加cookie數據,但我是jquery的新手。
代替值,存儲[* options.selectedIndex *](http://www.w3.org/html/wg/drafts/html/master/forms.html#dom-select-selectedindex),然後設置相同的選項以稍後選擇。 – RobG 2014-12-10 23:11:35
'c:forEach'不是有效的HTML,所以這個問題有一些缺失... – 2014-12-10 23:18:59
@MikeMcCaughan是不是(老)角? – 2014-12-10 23:27:44