在我的网站中,有一个table
, 在 everytd
中,有一个div
with<input>
里面。我在表格上运行并序列化每个 div 并将其发布到服务器。
for (var r = 0; r < tbodyRow.length; r++) {
var tbodyCols = tbodyRow[r].cells;
for (var c = 0; c < tbodyCols.length; c++) {
row = r + 1;
cell = c + 1;
div = $("#tbody tr:nth-child(" + row + ") td:nth-child(" + cell + ") :input").serialize();
if (div != "") {
$.post("../Contoller/Action?Mode=" + Mode, div, function () { });
}
tbodyCounter++;
};
};
并且在服务器中 - 操作有一个对象作为获取它的参数。
我想只发布一次对象的所有列表(我在 div 中)并像List<T>
在服务器端一样获取它。可能吗 ?