js select 删除opinion
时间: 2023-04-02 09:05:12 浏览: 83
我可以回答这个问题。要删除 select 元素中的 option,可以使用以下代码:
```javascript
var select = document.getElementById("mySelect");
select.remove(index);
```
其中,`mySelect` 是 select 元素的 id,`index` 是要删除的 option 的索引值。如果要删除所有的 option,可以使用以下代码:
```javascript
var select = document.getElementById("mySelect");
while (select.options.length > ) {
select.remove();
}
```
这样就可以删除 select 元素中的所有 option 了。
相关问题
js select 增加opinion
我可以回答这个问题。要增加一个 option,可以使用 JavaScript 中的 DOM 操作,通过创建一个新的 option 元素,设置其 value 和 text 属性,然后将其添加到 select 元素中即可。具体代码如下:
```javascript
var select = document.getElementById("selectId"); // 获取 select 元素
var option = document.createElement("option"); // 创建新的 option 元素
option.value = "value"; // 设置 option 的 value 属性
option.text = "text"; // 设置 option 的文本内容
select.add(option); // 将 option 添加到 select 中
```
其中,selectId 是 select 元素的 id,value 和 text 分别是 option 的 value 和文本内容。
js JavaScript select option 中的某个变成不可选
要将 select 中的某个 option 变成不可选,可以使用以下代码:
```javascript
document.getElementById("mySelect").options[index].disabled = true;
```
其中,`mySelect` 是要操作的 select 的 id,`index` 是要禁用的 option 的索引。将 `disabled` 属性设置为 `true`,就可以将该 option 设置为不可选。
阅读全文