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

@@ -16,13 +16,15 @@ jQuery 有一个 `.prop()` 方法,可以用其调整标签的属性。
下面是禁用所有的按钮的代码:
`$("button").prop("disabled", true);`
```js
$("button").prop("disabled", true);
```
禁用 `target1` 按钮。
禁用 `target1` 按钮。
# --hints--
应该禁用 `target1` 按钮。
`target1` 按钮应该被禁用
```js
assert(
@@ -38,7 +40,7 @@ assert(
assert($('#target2') && !$('#target2').prop('disabled'));
```
应该仅用 jQuery 更改元素属性
应该仅用 jQuery 给元素添加这些 class
```js
assert(!code.match(/disabled[^<]*>/g));