web-dev-qa-db-ja.com

表示テキストを使用して選択要素のselectedIndexを設定する方法は?

参照として表示テキストを使用して選択要素のselectedIndexを設定する方法は?

例:

<input id="AnimalToFind" type="text" />
<select id="Animals">
    <option value="0">Chicken</option>
    <option value="1">Crocodile</option>
    <option value="2">Monkey</option>
</select>
<input type="button" onclick="SelectAnimal()" />

<script type="text/javascript">
    function SelectAnimal()
    {
        //Set selected option of Animals based on AnimalToFind value...
    }
 </script>

ループなしでこれを行う他の方法はありますか?ご存知のように、組み込みのJavaScriptコードなどを考えています。また、jQueryを使用していません...

41
dpp

これを試して:

function SelectAnimal() {
    var sel = document.getElementById('Animals');
    var val = document.getElementById('AnimalToFind').value;
    for(var i = 0, j = sel.options.length; i < j; ++i) {
        if(sel.options[i].innerHTML === val) {
           sel.selectedIndex = i;
           break;
        }
    }
}
57
Jacob Relkin
<script type="text/javascript">
     function SelectAnimal(){
         //Set selected option of Animals based on AnimalToFind value...
         var animalTofind = document.getElementById('AnimalToFind');
         var selection = document.getElementById('Animals');

        // select element
        for(var i=0;i<selection.options.length;i++){
            if (selection.options[i].innerHTML == animalTofind.value) {
                selection.selectedIndex = i;
                break;
            }
        }
     }
</script>

selectタグのselectedIndexプロパティを設定すると、正しいアイテムが選択されます。 2つの値(オプションinnerHTML &&動物の値)を比較する代わりに、indexOf()メソッドまたは正規表現を使用して、大文字小文字またはスペースの存在にもかかわらず正しいオプションを選択することをお勧めします

selection.options[i].innerHTML.indexOf(animalTofind.value) != -1;

または.match(/regular expression/)を使用して

9
Ibu

これを試して:

function SelectAnimal()
{
    var animals = document.getElementById('Animals');
    var animalsToFind = document.getElementById('AnimalToFind');
    // get the options length
    var len = animals.options.length;
    for(i = 0; i < len; i++)
    {
      // check the current option's text if it's the same with the input box
      if (animals.options[i].innerHTML == animalsToFind.value)
      {
         animals.selectedIndex = i;
         break;
      }     
    }
}
3
tradyblix

ループやjqueryなしでこれが必要な場合は、次を使用できます。これは、現在のWebブラウザーで機能します。質問の時代を考えると、2011年にこれが機能するかどうかはわかりません。CSSスタイルセレクターの使用は非常に強力であり、多くのコードを短縮できることに注意してください。

// Please note that querySelectorAll will return a match for 
// for the term...if there is more than one then you will 
// have to loop through the returned object
var selectAnimal = function() {
  var animals = document.getElementById('animal');
  if (animals) {
    var x = animals.querySelectorAll('option[value="frog"]');
    if (x.length === 1) {
      console.log(x[0].index);
      animals.selectedIndex = x[0].index;
    }
  }
}
<html>

<head>
  <title>Test without loop or jquery</title>
</head>

<body>
  <label>Animal to select
  <select id='animal'>
    <option value='nothing'></option>
    <option value='dog'>dog</option>
    <option value='cat'>cat</option>
    <option value='mouse'>mouse</option>
    <option value='rat'>rat</option>
    <option value='frog'>frog</option>
    <option value='horse'>horse</option>
  </select>
  </label>
  <button onclick="selectAnimal()">Click to select animal</button>

</body>

</html>

document.getElementById( 'Animal')。querySelectorAll( 'option [value = "searchterm"]');インデックスオブジェクトで、次のことができるようになりました。x [0] .index

1
Brandon

このコードでインデックスを設定できます:

sel.selectedIndex = 0;

ただし、このプラクティスでは注意してください。ドロップダウンで選択された前の値を選択した場合、サーバー側のonclickメソッドを呼び出すことはできません。

1
ssingh

オプションに名前属性を追加します。

<option value="0" name="Chicken">Chicken</option>

それにより、HTMLOptionsCollection.namedItem( "Chicken")。valueを使用して、select要素の値を設定できます。

0
Jose