Commit d4316e3c authored by cjl's avatar cjl
Browse files

修复前端获取id集合为undefined

parent a1e60e5e
...@@ -349,11 +349,11 @@ ...@@ -349,11 +349,11 @@
var ids = ""; var ids = "";
for (var i = 0; i < row.length; i++) { for (var i = 0; i < row.length; i++) {
if (i == row.length - 1) { if (i == row.length - 1) {
ids += row[i].Id; ids += row[i].id;
break; break;
} }
//alert(row[i].id); //alert(row[i].id);
ids += row[i].Id + ","; ids += row[i].id + ",";
} }
$.ajax({ $.ajax({
type: "post", type: "post",
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment