gpt4 book ai didi

javascript - 在 HTML select 元素中搜索和选择选项值

转载 作者:行者123 更新时间:2023-11-30 12:59:10 25 4
gpt4 key购买 nike

我需要你的帮助。

我是 javascript 的新手,我不确定如何在选择框中搜索指定的选项然后选择它

HTML:

<!DOCTYPE html>

<html>

<head>

</head>

<body>

<select id="select1">
<option value="apples">apples</option>
<option value="oranges">oranges</option>
<option value="bananas">bananas</option>
<option value="mangos">mangos</option>
<option value="pears">pears</option>
</select>

</body>

</html>

即。

lookup("select1","mangos")

JavaScript 逻辑:

function lookup("selectid","stringtosearchfor") {

look through the selected "selectid" and find the string "mangos"

if found { select mangos from the select box }

}

你如何编码?

提前致谢

最佳答案

这比你想象的要容易...尝试:

document.getElementById('select1').value = 'mangos';

关于javascript - 在 HTML select 元素中搜索和选择选项值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17902319/

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