From 0f7eb415e26e7d145d16237151454db3cc29e219 Mon Sep 17 00:00:00 2001 From: hxy521 <70235647+hxy521@users.noreply.github.com> Date: Tue, 6 Jul 2021 09:31:33 +0800 Subject: Fix Web/Guide/AJAX/Getting_Started, zh-CN (#1392) 252 line, 'conputedString' -> 'computedString'. --- files/zh-cn/web/guide/ajax/getting_started/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'files') 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);
{"userData":"Jane","computedString":"Hi, Jane!"}
为了在 alertContents()
中使用这个数据,我们可不能只是alert responseText
,我们要解析它并 alert conputedString
,我们想要的属性:
为了在 alertContents()
中使用这个数据,我们可不能只是alert responseText
,我们要解析它并 alert computedString
,我们想要的属性:
function alertContents() { if (httpRequest.readyState === XMLHttpRequest.DONE) { -- cgit v1.2.3-54-g00ecf