1

我需要你的帮助。

我是 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 }

}

你怎么编码?

提前致谢,

4

3 回答 3

1
function lookup(id, value)
{
    var ret = undefined;

    if(document.getElementById(id) != undefined)
    {
        var options = document.getElementById(id).childNodes;

        for(i = 0; i < options.length; i++)
        {
            if(options[i].value == value)
            {
                ret = options[i];
                break;
            }
        }
    }

    return ret;
}
于 2013-07-27T20:52:55.727 回答
1

通过jQuery:

$('#select1').val('mangos');
于 2015-02-09T06:38:19.807 回答
1

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

document.getElementById('select1').value = 'mangos';
于 2013-07-27T20:55:13.793 回答