diff --git a/curriculum/challenges/chinese/01-responsive-web-design/applied-accessibility/give-links-meaning-by-using-descriptive-link-text.chinese.md b/curriculum/challenges/chinese/01-responsive-web-design/applied-accessibility/give-links-meaning-by-using-descriptive-link-text.chinese.md
index 3a3a778a77..832eef380e 100644
--- a/curriculum/challenges/chinese/01-responsive-web-design/applied-accessibility/give-links-meaning-by-using-descriptive-link-text.chinese.md
+++ b/curriculum/challenges/chinese/01-responsive-web-design/applied-accessibility/give-links-meaning-by-using-descriptive-link-text.chinese.md
@@ -7,17 +7,17 @@ localeTitle: 通过使用描述性链接文本给出链接含义
---
## Description
-屏幕阅读器用户对其设备读取的内容类型有不同的选择。这包括跳过(或覆盖)地标元素,跳转到主要内容或从标题中获取页面摘要。另一种选择是仅听取页面上可用的链接。屏幕阅读器通过阅读链接文本或锚( a
)标签之间的内容来完成此操作。列出“点击此处”或“阅读更多”链接无济于事。相反,您应该在a
标签中使用简短但具有描述性的文本,以便为这些用户提供更多意义。
+屏幕阅读器用户对其设备读取的内容类型有不同的选择。这包括跳过(或覆盖)地标元素、跳转到主要内容、或从标题中获取页面摘要。另一种选择是仅听取页面上可用的链接。屏幕阅读器通过阅读链接文本或a
标签之间的内容来完成此操作。列出如“点击此处”或“阅读更多”链接无法达到实质帮助。相反的,您应该在a
标签中使用简短但具有描述性的文本,对这些用户來說更有意义。
## Instructions
-如果没有周围的上下文,Camper Cat正在使用的链接文本不是很具描述性。移动锚( a
)标签,使它们环绕文本“有关电池的信息”而不是“点击此处”。
+如果没有上下文,Camper Cat正在使用的链接文字不是很具描述性。移动 a
标签,使它们环绕文本“有关电池的信息”而不是环绕着“点击此处”。
## Tests
```yml
tests:
- - text: 您的代码应移动锚点a
来自各地的词“点击这里”标签环绕中的“关于电池的信息”。
+ - text: 您应将a
标签从“点击这里”移动,让其环绕在“关于电池的信息”。
testString: 'assert($("a").text().match(/^(information about batteries)$/g), "Your code should move the anchor a
tags from around the words "Click here" to wrap around the words "information about batteries".");'
- text: 确保您a
元素具有结束标记。
testString: 'assert(code.match(/<\/a>/g) && code.match(/<\/a>/g).length === code.match(//g).length, "Make sure your a
element has a closing tag.");'