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.
88
99Document forms are members of the special collection ` document.forms ` .
1010
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.
1212
1313``` js no-beautify
1414document .forms .my - the form with name= " my"
@@ -38,7 +38,7 @@ For instance:
3838
3939There may be multiple elements with the same name. This is often the case for radio buttons or checkboxes.
4040
41- In these cases, ` form.elements[name] ` is a _ collection _ . For instance:
41+ In these cases, ` form.elements[name] ` is a * collection * . For instance:
4242
4343``` html run height=40
4444<form >
You can’t perform that action at this time.
0 commit comments