0

我能够将数组中的值附加到选择选项。当我这样做时,我无法在选择框中看到文本值(A1)。但是,当我使用警报框时,它会将 A1 显示为所选选项。

我的jQuery代码:

var route=['A1','A2','A3','A4','A5','A6','A7',......,'A50']
$.each(route, function(key, value) {
 $('#room').append($('<option>', { value : key }).text(value)); 

if (!$("#room option:selected").length)
$("#room option[value='0']").attr('selected', 'selected'); 

这是我的html代码:

<div data-role="fieldcontain"> 
<select name="room" id="room">  
</select>          
</div>

谁能帮我解决这个问题?

4

1 回答 1

1

试试这个

var route=['A1','A2','A3','A4','A5','A6','A7','A50'], html;
$.each(route, function(key, value) {
  html += '<option value="'+key+'">'+value+'</option>';
});
$('#room').append(html);

if ($("#room").val() !== '0') {
  $("#room").val(0); // using .val() will select the correct option for you, based on it's value attribute
} ​

见:http: //jsfiddle.net/tyPFu/

于 2012-08-14T00:02:13.270 回答