如果有一个选项,如何禁用选择下拉菜单?

时间:2019-01-22 17:34:18

标签: javascript jquery html html5

我想知道如何在过滤后没有任何选项的情况下禁用第三个下拉列表(不包括“选择选项”占位符选项)。

我猜想像if和$ select3.length这样的if语句可以解决这个问题,但是由于我对javascript很陌生,所以不知道如何在我的代码中实现过滤。

<select name="select1" id="select1">
    <option value="" disabled selected>Select your option</option>
    <option value="1" option-id="1">Sitzen </option>
    <option value="2" option-id="2">Schlafen</option>
    <option value="3" option-id="3">Reisen</option>
</select>

<select name="select2" id="select2" disabled>
 <option value="a" disabled selected option-id="a">Select your option</option>
    <option value="1" option-id="1">Comfort Cushion</option>
    <option value="2" option-id="1">Freilagerungssitzkissen</option>
    <option value="3" option-id="1">Rückenkissen</option>
    <option value="4" option-id="1">Sitzkissen zum Druckmanagement</option>
    <option value="5" option-id="1">Wedge Cushion</option>
    <option value="6" option-id="1">Wedge Pillow</option>
    <option value="7" option-id="2">Comfort Pillow</option>
    <option value="8" option-id="2">Dreamy Cushion</option>
    <option value="9" option-id="2">Kniekissen</option>
    <option value="10" option-id="3">Reise Nackenkissen</option>
</select>

<select name="select3" id="select3" disabled>
    <option value="a" disabled selected option-id="a">Select your option</option>

    <option value="2" option-id="2" >Standard</option>
    <option value="3" option-id="2" >Large</option>

    <option value="1" option-id="3" >Small</option>
    <option value="2" option-id="3" >Standard</option>

    <option value="2" option-id="4" >Standard</option>
    <option value="3" option-id="4" >Large</option>  


</select>
var $select1 = $( '#select1' ),
    $select2 = $( '#select2' ),
    $select3 = $( '#select3' ), // I added that line but not sure if its correct

    $options_a = $select2.find( 'option' ),
    $options_b = $select3.find( 'option' ); // I added that line but not sure if its correct

  $select1.on( 'change', function() {
  $select2.prop("disabled", false);

  $select2.html( $options_a.filter(function () {
    return $(this).attr('option-id') === $select1.val() ||
        $(this).attr('option-id') === "a"
  }))

  $select2.val('a')
    $select3.val('a')
} )

// I added the next lines for select3 but not sure if they are correct
$select2.on( 'change', function() {
    $select3.prop("disabled", false);
  $select3.html( $options_b.filter(function () {
    return $(this).attr('option-id') === $select2.val() ||
        $(this).attr('option-id') === "a"
  }));

$select3.val('a')

} )

https://jsfiddle.net/arabtornado/bkm25otw/46/

1 个答案:

答案 0 :(得分:2)

要实现此目的,您可以根据其中的disabled元素的数量在$select3上设置option属性。为此,您可以在change的{​​{1}}事件处理程序中添加以下行:

$select2

请注意,只有$select3.prop('disabled', $select3.find('option').length == 1); 元素时,此选项将被禁用,因为您始终具有“选择选项”的默认设置。

还值得注意的是1是非标准属性,这意味着您的HTML无效。我建议改用option-id属性来保持有效性。

data
var $select1 = $('#select1'),
  $select2 = $('#select2'),
  $select3 = $('#select3'),
  $options_a = $select2.find('option'),
  $options_b = $select3.find('option');

$select1.on('change', function() {
  $select2.prop("disabled", false).html($options_a.filter(function() {
    return $(this).data('option-id') === parseInt($select1.val(), 10) || $(this).data('option-id') === "a"
  })).val('a')
  $select3.val('a')
})

$select2.on('change', function() {
  $select3.html($options_b.filter(function() {
    return $(this).data('option-id') === parseInt($select2.val(), 10) || $(this).data('option-id') === "a"
  }));
  $select3.prop('disabled', $select3.find('option').length == 1).val('a')
})