一个明确的选择是使用 Struts2 Doubleselect。你需要做类似的事情
<s:doubleselect label="doubleselect test1" name="menu" list="{'fruit','other'}" doubleName="dishes" doubleList="top == 'fruit' ? {'apple', 'orange'} : {'monkey', 'chicken'}" />
<s:doubleselect label="doubleselect test2" name="menu" list="#{'fruit':'Nice Fruits', 'other':'Other Dishes'}" doubleName="dishes" doubleList="top == 'fruit' ? {'apple', 'orange'} : {'monkey', 'chicken'}" />
您可以在此处找到更多示例
如果您不想使用双重选择,您可以在 Jquery 的帮助下使用简单的 S2 选择标签,我不确定您想从哪里获取第二个下拉列表的值,如果这是从动作类更好地使用Struts2-JSON 插件,它将帮助您将数据作为 JSON 发送回 UI,您始终可以使用 Jquery 的 JSON 解析功能来解析 JSON 并填充下拉列表
var formInput='state='+statedata;
$.getJSON('search/fillDropDown',formInput,function(data) {
$("#district option:first").val("-1").text("Please select a district");
$('.result').html('' + data.districts + '');
$.each(data.districts,function(index, value){
var districtid = document.getElementById("district");
var option=new Option(value,value);
try{
districtid.add(option);
}
catch(e){
districtid.appendChild(option);
});
});
在上面,我根据第一个下拉列表中选择的值填充另一个下拉列表,并使用 JSON 插件将操作列表作为 JSON 数据发送回。