Skip to content

Commit 5a120af

Browse files
zhangciwu赵长伟
authored and
赵长伟
committed
Fix: value error
1 parent aa98e3c commit 5a120af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jquery.form.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1208,7 +1208,7 @@
12081208
var result = {};
12091209

12101210
$.each(arrayOfData, function (index, node) {
1211-
result[node.name] = result[node.value];
1211+
result[node.name] = node.value;
12121212
});
12131213

12141214
return result;

0 commit comments

Comments
 (0)