Skip to content

Commit 4711ee4

Browse files
authored
Update article.md
1 parent d78ce9c commit 4711ee4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

2-ui/4-forms-controls/1-form-elements/article.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,9 +289,9 @@ Form navigation:
289289
`element.form`
290290
: Elements reference their form in the `form` property.
291291
292-
Value is available as `input.value`, `textarea.value`, `select.value`, etc. (or `input.checked` for checkboxes and radio buttons).
292+
Value is available as `input.value`, `textarea.value`, `select.value`, etc. (For checkboxes and radio buttons, use `input.checked` to determine whether a value is selected.)
293293
294-
For `<select>`, we can also get the value by the index `select.selectedIndex` or through the options collection `select.options`.
294+
For `<select>`, one can also get the value by the index `select.selectedIndex` or through the options collection `select.options`.
295295
296296
These are the basics to start working with forms. We'll meet many examples further in the tutorial.
297297

0 commit comments

Comments
 (0)