0

我正在使用 struts2 框架。我的代码中有一个复选框列表。

<div id="MyCheckbox">
    <td>
      <s:checkboxlist theme="simple" name="claimListView.claimStatus" list="#{'U':'Unprocessed', 'P':'Processed','R':'Routed','S':'Sent'}" id="claimStatus" required="true" value="defaultColor"/>
    </td>
</div>

所以我希望这个字段成为必填字段。我的意思是用户应该至少选择一个复选框。否则应该抛出错误消息并阻止提交表单。我怎样才能做到这一点?

我在jquery中尝试过下面给出的代码。

var n = $("#MyCheckbox input:checked").length;
alert("The count is : "+n);
if (n>0) {
return true;
}
else{
return false;
}

我知道我错过了一些东西。谁能帮助我,我哪里出错了?

4

1 回答 1

0

最后我找到了我自己问题的解决方案。下面的脚本工作正常。

var n = $('input[name="claimListView.claimStatus"]:checkbox:checked').length;
if (n>0) {
return true;
}
else{
return false;
}
于 2013-05-06T11:56:06.297 回答