为了效率,我想.append()
在我之后运行一首单曲。.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);