あなたの助けが必要です。
私は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 }
}
それをどのようにコーディングしますか?
前もって感謝します、