- 这里有两个列表字段菜单。第一
brand
秒item
- 我想如果我们
brand
IBM
选择item
也会IBM
选择 - 另一方面,如果我们选择那
brand
HP
也会item
选择HP
如何在 JavaScript 中做到这一点。
<select name="brand">
<option>Please Select</option>
<option>IBM</option>
<option>HP</option>
</select>
<select name="item">
<option>Please Select</option>
<option>IBM</option>
<option>HP</option>
</select>