gpt4 book ai didi

javascript - 根据输入值在下拉列表中添加和删除选项

转载 作者:太空宇宙 更新时间:2023-11-04 14:59:45 24 4
gpt4 key购买 nike

如果我在输入框中输入一个值并单击按钮。如果下拉列表中存在值,我想检查下拉列表中的输入值我想删除该选项否则我想在选项中添加输入值。

HTML:

<input type="text" id="inputValue" />
<button id="myBtn" onclick="validate()">Click</button>
<select id="mySelect">
<option>Apple</option>
<option>Orange</option>
<option>Mango</option>
<option>Lemon</option>
</select>

JS:

function validate() {
var ipValue = document.getElementById('inputValue').value;
var select = document.getElementById('mySelect');
for(i=0;i<select.length;i++) {
if(select[i] == ipValue) {
ipValue.removeChild(select[i]);
}
else {
var option = document.createElement('option');
select.appendChild(option);
option.innerHTML = ipValue;
}
}
}

最佳答案

function validate() {
var ipValue = document.getElementById('inputValue').value;
var select = document.getElementById("mySelect");
var selectOption = select.children;

for (i = 0; i < select.length; i++) {
if (selectOption[i].text == ipValue) {
select.removeChild(selectOption[i]);
return;
}
}
var option = document.createElement('option');
select.appendChild(option);
option.text = ipValue;

}

关于javascript - 根据输入值在下拉列表中添加和删除选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35802838/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com