基于对单选按钮的选择,我需要启用或禁用整个复选框选项列表。When the selection calls for a disable I'm using this:
function radioSelectDNC() {
for (i = 3; i < document.addPNtoDNC.elements.length - 1; i++) {
document.addPNtoDNC[i].disabled=true; // this is working
document.addPNtoDNC[i].style.color="blue"; //this line is not working
}
禁用有效,但复选框选项文本的颜色无效。这是一个很长的表格,但以防万一,这是我列出复选框选项的方式:
<label><input type="checkbox" name="Campaign" value="Value1">Value1<br></label>
<label><input type="checkbox" name="Campaign" value="Value2">Value2<br></label>
<label><input type="checkbox" name="Campaign" value="Value3">Value3<br></label>
我使用了正确的属性吗?我在哪里可以找到房产列表?
哦,为了以防万一,请不要给我 jQuery。我才刚刚开始,每次我搜索并找到 jQuery 答案时,我都开始头晕目眩。这些日子中的一天。