?
?
<s:iterator value="simCrewAssignCheckList" id="list" status="status"> <tr id="row<s:property value="#status.index+1"/>" > <td height="30px"> <input id="err<s:property value="#status.index+1"/>" name="errInfo" type="checkbox" value="<s:property value="#status.index+1"/>"<s:if test='!editable'> disabled="disabled"</s:if>/> <input id="pid<s:property value="#status.index+1"/>" type="hidden" value="<s:property value="basicInfoId"/>" /> </td>
?
?
??? 处理选中的错误信息
?
function saveEditErr(){ $('input[name="errInfo"][@type="checkbox"]:checked').each(function(){ alert($(this).val()); }); }
?
?
?
?
?
?
?