aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/javascript/reference/statements/label/index.html
diff options
context:
space:
mode:
authort7yang <t7yang@gmail.com>2022-01-10 08:38:07 +0800
committerIrvin <irvinfly@gmail.com>2022-02-16 02:35:54 +0800
commitc40612041809fe289aba58aefa170bbe784aba1f (patch)
tree8ca89b071d04afcf7abd6d9a04d0765a041d9c8a /files/zh-cn/web/javascript/reference/statements/label/index.html
parent12a899ab8540bc84f56a0dc6491be80a48499d49 (diff)
downloadtranslated-content-c40612041809fe289aba58aefa170bbe784aba1f.tar.gz
translated-content-c40612041809fe289aba58aefa170bbe784aba1f.tar.bz2
translated-content-c40612041809fe289aba58aefa170bbe784aba1f.zip
remove name attribute for zh-CN
Diffstat (limited to 'files/zh-cn/web/javascript/reference/statements/label/index.html')
-rw-r--r--files/zh-cn/web/javascript/reference/statements/label/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/web/javascript/reference/statements/label/index.html b/files/zh-cn/web/javascript/reference/statements/label/index.html
index c0bf3413c7..e05f426275 100644
--- a/files/zh-cn/web/javascript/reference/statements/label/index.html
+++ b/files/zh-cn/web/javascript/reference/statements/label/index.html
@@ -108,7 +108,7 @@ for (i = 0; i &lt; 3; i++) { //The first for statement is labeled "loop1"
// "i = 1, j = 0"
// Notice the difference with the previous continue example</pre>
-<h3 id="Example_3" name="Example_3">使用带标记的 <code>break</code> 语句</h3>
+<h3 id="Example_3">使用带标记的 <code>break</code> 语句</h3>
<p>若给定一个数据数组和一个测试数组,则下面的例子会判断是否所有数据均通过了测试。</p>