您将看到下面的项目。我想使用“数据”中的项目。
像这样。
MyItemList:items
我如何在数据中使用项目?
var items = checkListBox3.GetSelectedItems();
alert(Array.prototype.map.call(items, function (item) {
return item.value;
}).join(", "));
var data= {
Something: Something.GetValue(),
//My question here (I want to use above items here like MyList:items)
};
$.ajax({
url: "/Home/MyUrl",
type: "POST",
dataType: "json",
contentType: 'application/json',
data: JSON.stringify(veri),
答案 0 :(得分:1)
我建议您仔细尝试代码中的注释,然后使用MyList:items
:
var data= {
Something : Something.GetValue(),
MyList : items
};