我有一个JS验证复选框。
function ActionCcdCheck (theForm)
{
if (theForm.ccd_chk.checked)
{
theForm.ccd_pos[0].className = 'part';
theForm.ccd_pos[1].className = 'part';
theForm.ccd_pos[2].className = 'part';
theForm.ccd_pos[0].disabled = false;
theForm.ccd_pos[0].checked = false;
theForm.ccd_pos[1].disabled = false;
theForm.ccd_pos[1].checked = false;
theForm.ccd_pos[2].disabled = false;
theForm.ccd_pos[2].checked = false;
}
else
{
theForm.ccd_pos[0].disabled = true;
theForm.ccd_pos[1].disabled = true;
theForm.ccd_pos[2].disabled = true;
}
}
复选框
<td colspan="1" rowspan="2" width="35">CCD</td>
<td>Check</td>
<td><input type="checkbox" name="ccd_chk" value="yes" class="part" onclick="ActionCcdCheck (this.form);" onkeypress="FocusChange (this.form, 5, 4);"/> Yes</td>
<tr>
<td>Position</td>
<td>
<input type="checkbox" name="ccd_pos[]" value="front" class="part" onkeypress="FocusChange (this.form, 6, 3);"/> Front
<input type="checkbox" name="ccd_pos[]" value="back" class="part" onkeypress="FocusChange (this.form, 7, 2);"/> Back
<input type="checkbox" name="ccd_pos[]" value="fb" class="part" onkeypress="FocusChange (this.form, 8, 1);"/> FB
</td>
<tr>
现在,当我把像这个名字=“ccd_pos []”这样的复选框名称时,我遇到了问题。 JS验证不起作用。我使用它是因为我想提交复选框的多个值。
所以任何人都可以给我一个建议?感谢。
答案 0 :(得分:2)
在您的代码中:
theForm.ccd_pos[0]
正在寻找表单的ccd_pos
属性,没有一个。你需要的是:
theForm['ccd_pos[]'][0]
由于具有相同名称的表单控件将作为集合返回,因此:
theForm['ccd_pos[]']
返回名称为ccd_pos[]
的三个控件中的collection。然后使用普通索引名称访问集合的各个成员。
请注意,在javascript中,dot notation is a shortcut to formal property access只能在名称符合identifiers规则的情况下使用。否则,您必须使用方括号(正式)表示法。
所以你的代码可能是这样的:
var box, boxes = theForm.['ccd_pos[]'];
for (var i=0, iLen=boxes.length; i<iLen; i++) {
box = boxes[i];
if (theForm.ccd_chk.checked) {
box.className = 'part';
box.disabled = false;
box.checked = false;
} else {
box.disabled = true;
// and probably
box.className = '';
}
}