服务器端:我制作“IEnumerable”类型的 ViewBag
客户端:迭代 ViewBag,以构建下拉列表。
如何使用 JavaScript/jQuery 迭代我的 SelectListItems?
Firefox 错误消息:“TypeError:list.each 不是函数”
function test() {
var modtagerId = $('#ModtagerId');
modtagerId.empty();
// ViewBag.dropdownModtagerListeNyhedsbrev is of type "IEnumerable<SelectListItem>"
var list = ViewBag.dropdownModtagerListeNyhedsbrev;
list.each(function () {
$("<option />", {
val: this.value,
text: this.text
}).appendTo(modtagerId);
});
}