aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn
diff options
context:
space:
mode:
authorbtea <2356281422@qq.com>2021-10-26 09:23:44 -0500
committerGitHub <noreply@github.com>2021-10-26 22:23:44 +0800
commit8b36b50891dc031f1c84f00b4187a65dfeb37125 (patch)
treeccc31bb14446017c59707f2aa0471d011a3657fc /files/zh-cn
parent8c2c6747ebe8e44ca1cbf55aa67afa2e5d53b66b (diff)
downloadtranslated-content-8b36b50891dc031f1c84f00b4187a65dfeb37125.tar.gz
translated-content-8b36b50891dc031f1c84f00b4187a65dfeb37125.tar.bz2
translated-content-8b36b50891dc031f1c84f00b4187a65dfeb37125.zip
fix ajax send formdata incorrect format (#2801)
* fix ajax send formdata incorrect format * delete unnecessary code
Diffstat (limited to 'files/zh-cn')
-rw-r--r--files/zh-cn/web/api/xmlhttprequest/send/index.html2
1 files changed, 0 insertions, 2 deletions
diff --git a/files/zh-cn/web/api/xmlhttprequest/send/index.html b/files/zh-cn/web/api/xmlhttprequest/send/index.html
index 6b96c92ebd..6f692710cd 100644
--- a/files/zh-cn/web/api/xmlhttprequest/send/index.html
+++ b/files/zh-cn/web/api/xmlhttprequest/send/index.html
@@ -92,7 +92,6 @@ xhr.send(null);
// xhr.send('string');
</code>// <code>xhr.send(new Blob());
// xhr.send(new Int8Array());
-// xhr.send({ form: 'data' });
// xhr.send(document);</code>
</pre>
@@ -111,7 +110,6 @@ xhr.send("foo=bar&amp;lorem=ipsum");
// xhr.send('string');
</code>// <code>xhr.send(new Blob());
// xhr.send(new Int8Array());
-// xhr.send({ form: 'data' });
// xhr.send(document);</code>
</pre>