File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
2-ui/4-forms-controls/1-form-elements Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ Working with forms will be much more convenient when we learn them.
8
8
9
9
Document forms are members of the special collection ` document.forms ` .
10
10
11
- That's a so-called < dfn > "named collection"</ dfn > : it's both named and ordered. We can use both the name or the number in the document to get the form.
11
+ That's a so-called ** "named collection"** : it's both named and ordered. We can use both the name or the number in the document to get the form.
12
12
13
13
``` js no-beautify
14
14
document .forms .my - the form with name= " my"
@@ -38,7 +38,7 @@ For instance:
38
38
39
39
There may be multiple elements with the same name. This is often the case for radio buttons or checkboxes.
40
40
41
- In these cases, ` form.elements[name] ` is a _ collection _ . For instance:
41
+ In these cases, ` form.elements[name] ` is a * collection * . For instance:
42
42
43
43
``` html run height=40
44
44
<form >
You can’t perform that action at this time.
0 commit comments