Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c742606

Browse files
committed
[CHG]修复部分es5写法不兼容问题
1 parent 2352cfe commit c742606

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ezuikit.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@
164164
http_request.open(method, _url, true);
165165
// http_request.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
166166
var data = new FormData();
167-
for (i in params) {
167+
for (var i in params) {
168168
data.append(i, params[i]);
169169
}
170170
http_request.send(data);

0 commit comments

Comments
 (0)