chore: update translations (#41737)

This commit is contained in:
camperbot
2021-04-06 00:04:04 +09:00
committed by GitHub
parent 0442f975d6
commit d7bc7a945b
55 changed files with 309 additions and 220 deletions

View File

@ -14,7 +14,9 @@ dashedName: change-text-with-click-events
通过在点击事件内添加以下代码实现:
`document.getElementsByClassName('message')[0].textContent="Here is the message";`
```js
document.getElementsByClassName('message')[0].textContent="Here is the message";
```
# --instructions--

View File

@ -14,11 +14,13 @@ dashedName: render-images-from-data-sources
这是执行此操作的代码:
`html += "<img src = '" + val.imageLink + "' " + "alt='" + val.altText + "'>";`
```js
html += "<img src = '" + val.imageLink + "' " + "alt='" + val.altText + "'>";
```
# --instructions--
添加代码`img`中使用 `imageLink``altText` 属性。
添加代码`img`中使用 `imageLink``altText` 属性。
# --hints--