9 lines
154 B
HTML
9 lines
154 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<select id="select">
|
||
|
|
<option>Value 0</option>
|
||
|
|
<option>Value 1</option>
|
||
|
|
</select>
|
||
|
|
<script>
|
||
|
|
select.selectedIndex = 1;
|
||
|
|
</script>
|