我想在struts2中使用javascript从列表框中添加/删除值。 我怎么能这样做?
<s:select label="Select Month"
name="monthname"
headerKey="1"
headerValue="-- Please Select --"
list="#{'01':'January','02':'February','03':'March','04':'April',
'05':'May','06':'June','07':'July','08':'August','09':'September','10':
'October','11':'November','12':'December'}"
/>
假设我想从列表中删除January,或者在struts2中通过javascript在列表中添加新月。我该如何实施呢?
提前致谢。
答案 0 :(得分:1)
Struts2与它无关。
我建议你看看jQuery,因为它使这个变得微不足道:
<select>
<option>Jan
<option>Feb
<option>Mar
<option>Apr
<option>Jun
</select>
<input type="button" id="removeJanuary" value="Remove January">
<script>
$(function() {
$('#removeJanuary').click(function() {
$("option:contains('Jan')").remove();
});
});
</script>