我无法将表单元素值转换为jstl标记。我在jsp页面做了一些奇特的东西,就像我有一个下拉菜单,一旦选择了一些值,我加载其余的表单,一旦选择我加载休息,所以对于第一次下拉我没有问题,因为他们是常量,我知道接下来要加载什么,但我有第二个下拉菜单,有来自服务器的动态数据,所以我需要知道用户选择了什么,所以我可以根据它加载其余的表单。
我无法访问jstl中的表单元素值。我怎样才能做到这一点 ?
我的jsp:
<head>
<script type="text/javascript">
$(document).ready(function(){
$("#implementation").change(function(){
if ($(this).val() == "aaa" ) {
$("#aaa").slideDown("fast");
} else {
$("#aaa").slideUp("fast");
}
});
$("#type").change(function(){
if ($(this).val() == "new" || $(this).val() == "old") {
$("#remote").slideDown("fast");
} else {
$("#remote").slideUp("fast");
}
});
});
</script>
</head>
<body>
<form:form id="form" name="form" method="post" modelAttribute="store" action="/shard">
<fieldset>
<div class="input select">
<label for="implementation">Implementation<span class="small">Choose implementation</span></label>
<form:select name="implementation" path="implementation">
<form:option value="">Choose Implementation</form:option>
<c:forEach items="${implementations.keySet()}" var="impl">
<form:option value="${impl}"><c:out value="${impl}" /></form:option>
</c:forEach>
</form:select>
</div>
<div style="display: none;" id="aaa">
<div class="input select">
<label for="aaa" >aaa<span class="small">Choose cluster</span></label>
<form:select id="cluster" name="cluster" path="cluster">
<form:option value="">Choose Cluster</form:option>
<c:forEach items="${implementations.get('aaa').getClusters().keySet()}" var="cl">
<form:option value="${cl}"><c:out value="${cl}" /></form:option>
</c:forEach>
</form:select>
<label >new</label>
<form:checkbox id="type" path="type" value="new" />
<label >old</label>
<form:checkbox id="type" path="type" value="old" />
<div style="display: none;" id="remote">
<label>Remote Sites <span class="small">Available Sites</span></label>
<c:if test="${implementations.get('aaa').getClusters().get(**<I need the above selected type checkbox value>**) == 'new'}">
<form:checkboxes items="${implementations.get('aaa').getRemoteSites().get('<I need the above selected type checkbox value>').get**<old | new from the type checkbox above>**Sites()}" path="remoteSites" id="remoteSites" style="display: block; float: right;" />
</c:if> </div>
<input style="margin-left: 150px; width: 125px; height: 30px;" class="button" type="submit" value="Add" />
<div class="spacer"></div>
</div>
</div>
</fieldset>
</form:form>
</body>
任何帮助?
谢谢
答案 0 :(得分:1)
嗯,“动态”值可能以某种方式连接到数据集或页面集,因此您应该知道需要获得的返回值。即使你没有,你也应该能够创建一些逻辑来根据用户选项获取所选数据。
比如说我有一个下拉列表,其中包含基于数据库表中主键的选择值。选择该选项后,我只需根据下拉列表中的主键值从数据库中获取关联的数据集。下拉列表中的值可能是动态的,基于先前选择的选项,但它们仍然与特定数据集相关联。
这一切都可以通过通配符或一些自定义逻辑来完成,以解析服务器端的选择选项。