js判断选项哪个被选中
时间: 2023-10-04 09:09:36 浏览: 68
JS判断是否选中checkbox
在 HTML 中,可以通过以下方式判断哪个选项被选中:
1. 使用 id 属性获取 select 元素:
```
var selectElement = document.getElementById("mySelect");
```
2. 使用 selectedIndex 属性获取当前选中的选项的索引:
```
var selectedIndex = selectElement.selectedIndex;
```
3. 使用 options 属性获取所有选项的数组,再通过索引获取当前选中的选项:
```
var selectedOption = selectElement.options[selectedIndex];
```
4. 最后可以通过比较选项的 value 属性或者文本内容来确定哪个选项被选中:
```
if(selectedOption.value === "option1") {
// option1 被选中
} else if(selectedOption.value === "option2") {
// option2 被选中
} else {
// 其他选项被选中
}
```
其中,mySelect 是 select 元素的 id,option1 和 option2 是选项的 value 属性值。
阅读全文