2

因此,我一直在寻找有关此处的问题,并且已经走得足够远,可以textbox通过更改 的选择来禁用 a ,但是如果返回到其默认值 ,dropdownlist我希望能够再次启用它。 dropdownlist<Select an Access Point>

查询:

$('#selectAccessPoint').change(function () {
    if ($('#selectAccessPoint :selected').val != "2147483647")
        $('#newAccessPoint').attr('disabled', 'disabled');
    else {
        $('#newAccessPoint').removeAttr('disabled');
        $('#newAccessPoint').attr('enabled', 'enabled');
    }
});

textbox和的HTML dropdownlist:`

        <tr>
        <td><label for ="AccessPoint" class="xl">Access Point:</label></td>
            <td><%= Html.DropDownListFor(x => x.AccessPointsList.Id, Model.AccessPointsList.AccessPoints.OrderByDescending(x => x.Value.AsDecimal()), new { @id = "selectAccessPoint", @class = "info1"})%></td>
        </tr>
        <tr>
            <td><label for ="AccessPoint" class="xl">Or Add New:</label></td>
            <td><%= Html.TextBoxFor(x => x.AccessPointsList.AccessPoint, new { @id = "newAccessPoint", @class = "location info2 xl", maxlength = "250" }) %></td>
        </tr>

生成的 HTML:( <select class="info1" data-val="true" data-val-number="The field Id must be a number." data-val-required="The Id field is required." id="selectAccessPoint" name="AccessPointsList.Id"><option value="2147483647">&lt;Select an Access Point&gt;</option> 那里有更多选项,但这是我要比较的选项)

<input class="location info2 xl" id="newAccessPoint" maxlength="250" name="AccessPointsList.AccessPoint" type="text" value="">

注意:attr必须用作prop给我一个错误,val()也给我一个错误。

4

2 回答 2

7

使用jquery v1.9.1

$('#selectAccessPoint').change(function () {
    if ($(this).find('option:selected').text() != '<Select an Access Point>') {
        $('#newAccessPoint').prop('disabled', true);
    } else {
        $('#newAccessPoint').prop('disabled', false)
    }
});
  • $('#selectAccessPoint:selected')不正确。它应该是$('#selectAccessPoint option:selected')
  • .text不正确。它应该是.text()
  • 禁用文本框,只需使用prop('disabled', true)jquery v1.9.1 使用它。
  • 启用文本框,只需使用它prop('disabled', false)

使用jquery v1.4.4

$('#selectAccessPoint').change(function () {
    if ($(this).find('option:selected').text() != 'Select an Access Point') {
        $('#newAccessPoint').attr('disabled', 'disabled');
    } else {
        $('#newAccessPoint').attr('disabled', '')
    }
});
于 2013-05-15T15:35:13.680 回答
0

您可能想尝试这样的事情

HTML

<select name="foo" id="foo" onChange="javascript:changeTextBoxState(this)">
  <option>Select Something</option>
  <option>FooBar</option>
</select>

<input name="bar" id="bar" type="text" />

jQuery

function changeTextBoxState(dropDown) {

  switch (dropDown.value) {
    case 'Select Something': {
       $('#bar').removeAttr("disabled");
    }
    case 'FooBar': {
       $('#bar').addAttr('disabled', 'disabled');
    }
  }
}

输入标签上没有启用属性,只有禁用。

希望这可以帮助

于 2013-05-15T15:50:32.030 回答