我想在选择中选择衬衫时做出选择,它将在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>