jQuery,如果我选择一个选项,则插入新选项

时间:2019-05-14 17:13:21

标签: jquery

我想在选择中选择衬衫时做出选择,它将在id = size的选择中添加“ L”选项。新手在这里。 这是我的代码

<label for="clothes_type" class="control-label col-md-2">Clothes Type</label>
      <select class="form-control" name="clothes_type" id="clothes_type" >
        <option value="1">Jacket</option>
        <option value="2">Blazer</option>
        <option value="3">Shirt</option>
        <option value="4">T-Shirt</option>
      </select>

我的脚本

<script>
If ($('#clothes_type').val()=='3') {
    $('#size').append('<option>L</option>');
}
</script>

0 个答案:

没有答案