اضافه کردن یک option به select
اهمیت: 5
یک <select>
وجود دارد:
<select id="genres">
<option value="rock">Rock</option>
<option value="blues" selected>Blues</option>
</select>
از JavaScript استفاده کنید تا:
- مقدار و متن selected option را نشان دهید.
- یک option اضافه کنید:
<option value="classic">Classic</option>
. - ان را selected بکنید.
توجه کنید که اگر همه چیز را درست انجام داده باشید alert باید blues
را نشان دهد.
The solution, step by step:
<select id="genres">
<option value="rock">Rock</option>
<option value="blues" selected>Blues</option>
</select>
<script>
// 1)
let selectedOption = genres.options[genres.selectedIndex];
alert( selectedOption.value );
// 2)
let newOption = new Option("Classic", "classic");
genres.append(newOption);
// 3)
newOption.selected = true;
</script>