12

我有一个带有 2 个复选框和 2 个禁用的输入文本字段部分的表单。

如果仅选中第一个复选框,则应启用以下输入文本字段:

  • 电子邮件
  • 确认电子邮件
  • 全名

如果仅选中第二个复选框,则应启用以下输入文本字段:

  • 电子邮件
  • 确认电子邮件
  • 颜色
  • 尺寸
  • 模型

如果选中两个复选框,则应启用所有输入文本字段。我遇到的问题是,如果两个复选框都被选中,那么一个未被选中,则 2 个电子邮件文本字段被禁用。

这是我所拥有的。我可以使用 jQuery。 http://jsfiddle.net/Ujxkq/

这是我的 HTML:

<form id="myForm">
  <h3>Section 1</h3>
  Checkbox 1: <input type="checkbox" name="checkbox1" id="checkboxOne" onclick="enableDisableEmail(this.checked, 'emailAddr', 'emailConfirm');enableDisableSection1(this.checked, 'fullName');" />
  <p><input type="text" id="emailAddr" name="myEmailAddr" placeholder="Email" disabled /></p>
  <p><input type="text" id="emailConfirm" name="myEmailConfirm" placeholder="Confirm Email" disabled /></p>
  <p><input type="text" id="fullName" name="myFullName" placeholder="Full Name" disabled /></p>

  <h3>Section 2</h3>
  Checkbox 2: <input type="checkbox" name="checkbox2" id="checkboxTwo" onclick="enableDisableEmail(this.checked, 'emailAddr', 'emailConfirm');enableDisableSection2(this.checked, 'color', 'size', 'model');" />
  <p><input type="text" id="color" name="myColor" placeholder="Color" disabled /></p>
  <p><input type="text" id="size" name="mySize" placeholder="Size" disabled /></p>
  <p><input type="text" id="model" name="myModel" placeholder="Model" disabled /></p>
</form>

这是我的Javascript:

function enableDisableEmail(isEnabled, email, confirm) {
    document.getElementById(email).disabled = !isEnabled;
    document.getElementById(confirm).disabled = !isEnabled;
}

function enableDisableSection1(isEnabled, fullName) {
    document.getElementById(fullName).disabled = !isEnabled;
}

function enableDisableSection2(isEnabled, color, size, model) {
    document.getElementById(color).disabled = !isEnabled;
    document.getElementById(size).disabled = !isEnabled;
    document.getElementById(model).disabled = !isEnabled;
}
4

3 回答 3

11

你用 jQuery 标记了这个问题,但到目前为止你还没有使用它。
这是一个使用 jQuery 的版本:

jQuery(function($) {
    $('#checkboxOne, #checkboxTwo').click(function() {
        var cb1 = $('#checkboxOne').is(':checked');
        var cb2 = $('#checkboxTwo').is(':checked');
        $('#emailAddr, #emailConfirm').prop('disabled', !(cb1 || cb2));
        $('#fullName').prop('disabled', !cb1);
        $('#color, #size, #model').prop('disabled', !cb2);    
    });
});

如果您使用此版本,您可以删除复选框本身的所有 onclick 属性。
此版本的更新小提琴在这里:http: //jsfiddle.net/tB7Yz/

于 2013-06-05T01:28:53.500 回答
7

不是每次都来回切换,而是检查两个复选框的状态,并据此决定是启用还是禁用每个字段。

您可以将其简化为单个函数,该函数调用任一复选框的 onclick:

function enableDisableAll() {
    var cb1 = document.getElementById('checkboxOne').checked;
    var cb2 = document.getElementById('checkboxTwo').checked;
    document.getElementById('emailAddr').disabled = !(cb1 || cb2);
    document.getElementById('emailConfirm').disabled = !(cb1 || cb2);
    document.getElementById('fullName').disabled = !cb1;
    document.getElementById('color').disabled = !cb2;
    document.getElementById('size').disabled = !cb2;
    document.getElementById('model').disabled = !cb2;
}

更新的小提琴在这里:http: //jsfiddle.net/p8gqZ/1/

于 2013-06-05T01:12:12.620 回答
1

我将您的代码更改为使用过的 Jquery

$(document).ready(function(){
var changeStatus = function(){
    var fne = $("#checkboxOne").prop("checked");
    $("#fullName").prop("disabled", !fne);

    var csme =$("#checkboxTwo").prop("checked");
    $("#color").prop("disabled", !csme);
    $("#size").prop("disabled", !csme);
    $("#model").prop("disabled", !csme);

    var any= fne || csme;
    $("#emailAddr").prop("disabled", !any);
    $("#emailConfirm").prop("disabled", !any);
};


$("#checkboxOne").on("change", changeStatus);
$("#checkboxTwo").on("change", changeStatus);

});

小提琴

于 2013-06-05T01:18:47.130 回答