简体   繁体   English

Javascript或jQuery在select元素中选择一个选项

[英]Javascript or jQuery to select a option in select element

I am wanting to automatically select the option with the value of fr. 我想自动选择值为fr的选项。

<select class="goog-te-combo">

<option value="">Select Language</option>
<option value="fr">French</option>

</select>

Is this possible with javascript or jQuery ? 这可能与javascript或jQuery吗?

设置法语选项:

$('.goog-te-combo').val("fr");

Without jQuery you need brute force 没有jQuery,您就需要蛮力

var country="fr";
//If you know the form and name of the select:
var sel = document.forms[0].sel1;

//If you know the id of the select:
var sel = document.getElementById('sel1');

// If you only know the className:
var sels = document.getElementsByTagName('select');
for (var i=0,n=sels.length;i<n;i++) {
  if (sels[i].className=="goog-te-combo") { // assume multiple selects with same class
    for (var j=0, m=sels[i].options.length;j<m;j++) {
      if (sels[i].options[j].value==country) sels[i].options[j].selected=true;
    }
  }
}

以下代码段还将设置fr选项:

$('option[value="fr"]').attr({selected: 'true'});

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM