chore(i8n,curriculum): processed translations (#41551)

Co-authored-by: Crowdin Bot <support+bot@crowdin.com>
This commit is contained in:
camperbot
2021-03-22 07:52:28 -06:00
committed by GitHub
parent 7215a6fa77
commit 7615ddf702
94 changed files with 1061 additions and 985 deletions

View File

@@ -14,27 +14,29 @@ jQuery 有一个 `clone()` 方法,可以复制标签。
例如,如果想把 `target2``left-well` 复制到 `right-well`,可以设置如下:
`$("#target2").clone().appendTo("#right-well");`
```js
$("#target2").clone().appendTo("#right-well");
```
是否注意到这两个 jQuery 方法连在一起了? 这被称为 <dfn>链式调用function chaining</dfn>,是一种用 jQuery 实现效果的简便方法。
是否注意到这两个 jQuery 函数连在一起了? 这被称为<dfn>链式调用function chaining</dfn>,是一种用 jQuery 实现效果的简便方法。
克隆 `target5` 标签并附加到 `left-well`
克隆 `target5` 元素,并将其附加到 `left-well`
# --hints--
`target5` 标签应该在 `right-well`
`target5` 元素应该在 `right-well` 里面
```js
assert($('#right-well').children('#target5').length > 0);
```
应该克隆 `target5` 标签并放在 `left-well`
应该克隆 `target5` 元素,并放在 `left-well` 里面
```js
assert($('#left-well').children('#target5').length > 0);
```
应该仅用 jQuery 移动这些标签
应该仅用 jQuery 移动这些元素
```js
assert(!code.match(/class.*animated/g));