我需要在 mvc 中使用 ajax 从列表框中发送多个选定的数据。我得到选定的数据。我不知道如何将数据 ajax 发送到控制器。我的代码如下:
var Students= [];
var x = document.getElementById("ListBox");
for (var i = 0; i < x.options.length; i++) {
if (x.options[i].selected == true) {
Students.push(x.options[i].text)
}
}
$.ajax({
url: '',
type: 'POST',
data: { id:studenid, class: class, Students: Students},
dataType: 'json',
success: function (data) {
}
}); // id:studenid, class:classs values are send it properly how to add the students?