Skip to content

Commit

Permalink
[zh-cn]: fix incorrect style of self-closing input tag (#16123)
Browse files Browse the repository at this point in the history
  • Loading branch information
Timothy-Liuxf authored Sep 26, 2023
1 parent 0502e73 commit 9ac91b5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ function App(props) {
<label className="todo-label" htmlFor="todo-0"> Eat </label>
```
`<input/ >` 标签中的 `defaultChecked` 属性告诉 React 最初要检查这个复选框。如果我们像在普通的 HTML 中那样使用 `checked`,React 会在浏览器控制台中记录一些与处理复选框事件有关的警告,这是我们不想要的。现在不用太担心这个问题——我们将在以后使用事件的时候讨论这个问题。
`<input />` 标签中的 `defaultChecked` 属性告诉 React 最初要检查这个复选框。如果我们像在普通的 HTML 中那样使用 `checked`,React 会在浏览器控制台中记录一些与处理复选框事件有关的警告,这是我们不想要的。现在不用太担心这个问题——我们将在以后使用事件的时候讨论这个问题。
`htmlFor` 属性对应于 HTML 中使用的 `for` 属性。因为 `for` 是一个保留词,我们不能在 JSX 中使用 `for` 作为属性,所以 React 使用 `htmlFor` 代替。
Expand Down

0 comments on commit 9ac91b5

Please sign in to comment.