我需要你的帮助。
我是 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>
IE。
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 }
}
你怎么编码?
提前致谢,