我正在尝试使用 JS 同时更新多个select
元素的选定值。出于某种原因,我的 JS 只更新了一个select
,而不是页面上的全部。不幸的是,我无法更改 的id
属性select
,并且各种select
元素需要具有相同的id
。
我该如何更改功能,以便更新所有带有 id 'dropdown-test' 的下拉菜单?
JS
document.getElementById('dropdown-test').value="3";
HTML
<select id="dropdown_test">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
</select>
<select id="dropdown_test">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
</select>