Commit 9e38c136 authored by 乾坤平台's avatar 乾坤平台 Committed by 季圣华
Browse files

!17 修复前端获取id集合为undefined

Merge pull request !17 from 乾坤平台/master
parents a1e60e5e d4316e3c
......@@ -349,11 +349,11 @@
var ids = "";
for (var i = 0; i < row.length; i++) {
if (i == row.length - 1) {
ids += row[i].Id;
ids += row[i].id;
break;
}
//alert(row[i].id);
ids += row[i].Id + ",";
ids += row[i].id + ",";
}
$.ajax({
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