aboutsummaryrefslogtreecommitdiff
path: root/files
diff options
context:
space:
mode:
Diffstat (limited to 'files')
-rw-r--r--files/zh-cn/web/guide/ajax/getting_started/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/web/guide/ajax/getting_started/index.html b/files/zh-cn/web/guide/ajax/getting_started/index.html
index 4aed922902..1416ae69b4 100644
--- a/files/zh-cn/web/guide/ajax/getting_started/index.html
+++ b/files/zh-cn/web/guide/ajax/getting_started/index.html
@@ -249,7 +249,7 @@ alert(root_node.firstChild.data);
<p><code>{"userData":"Jane","computedString":"Hi, Jane!"}</code></p>
-<p>为了在 <code>alertContents()</code> 中使用这个数据,我们可不能只是alert <code>responseText</code> ,我们要解析它并 alert <code>conputedString</code>,我们想要的属性:</p>
+<p>为了在 <code>alertContents()</code> 中使用这个数据,我们可不能只是alert <code>responseText</code> ,我们要解析它并 alert <code>computedString</code>,我们想要的属性:</p>
<pre class="brush: js">function alertContents() {
if (httpRequest.readyState === XMLHttpRequest.DONE) {