嗨,我的JSP中有这些多重框
<html:multibox property="selectedPDFSignatures" value="PDF_SIG" name="manageVPForm" onclick="setPdfChildSignatures(this)"/>
<html:multibox property="selectedPDFSignatures" value="PDF_SIG_TS" name="manageVPForm" onclick="setPdfChildSignatures(this)"/>
<html:multibox property="selectedPDFSignatures" value="PDF_SIG_TS_RI" name="manageVPForm" onclick="setPdfChildSignatures(this)"/>
<html:multibox property="selectedPDFSignatures" value="PDF_SIG_TS" name="manageVPForm" onclick="setPdfChildSignatures(this)"/>
<html:multibox property="selectedPDFSignatures" value="PDF_SIG_TS_RI" name="manageVPForm" onclick="setPdfChildSignatures(this)"/>
我做了这样的事情 第一个复选框
<s:iterator var="row" value="%{manageVPForm.selectedPDFSignatures}">
<input type="checkbox" name="manageVPForm.checked" value="${row.PDF_SIG}" <s:property value="%{manageVPForm.checked.contains(#row.PDF_SIG)?'checked='checked'':''}"/>/>
</s:iterator>
但是它不能解决我的问题,能否请您告诉我如何迁移所有上述复选框? 我在stackoverflow上也看到了此Question,但对我不起作用