私は効率のため.append()
に私の後に1つのシングルを実行したい. .each()
オブジェクトのセットを構築しようとしましたが、実行されません。文字列の代わりに jQuery オブジェクトを作成していることを除いて、この質問に似ています。
HTML
<select></select>
jQuery
var items = ['apple','pear','taco','orange'],
options = '';
jQuery.each(items, function(i, fruit){
options += jQuery('<option/>', {
value: fruit,
text: fruit
});
}); //added missing ');'
jQuery('select').append(options);