You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
: A form is available as `document.forms[name/index]`.
285
+
.قابل دسترسی است `document.forms[name/index]` یک فرم با :
286
286
287
287
`form.elements`
288
-
: Form elements are available as `form.elements[name/index]`, or can use just `form[name/index]`. The `elements` property also works for `<fieldset>`.
288
+
.کار میکنند `<fieldset>` همچنین با `elements` property استفاده کرد. `form[name/index]` قابل دسترسی هستند، یا فقط میتوان از `form.elements[name/index]` با Form elements عناصر :
289
289
290
290
`element.form`
291
-
: Elements reference their form in the `form` property.
291
+
.به فرم خود ارجاع میدهند `form` property عناصر در :
292
292
293
-
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.)
293
+
(.استفاده کنید که مشخص میکند یک مقدار انتخاب شده است یا نه `input.checked` از radio buttons و checkboxes برای) و ... قابل دسترسی است. `input.value`، `textarea.value`، `select.value` با value مقدار
294
294
295
-
For `<select>`, one can also get the value by the index `select.selectedIndex` or through the options collection `select.options`.
295
+
.به دست آورد options collection `select.options` یا از طریق `select.selectedIndex` همچنین میتوان مقدار را با اندیس `<select>` برای
296
296
297
-
These are the basics to start working with forms. We'll meet many examples further in the tutorial.
297
+
اینها مبانی شروع کار با فرمها هستند. ما مثالهای بیشتری را در آموزش خواهیم دید.
298
298
299
-
In the next chapter we'll cover `focus` and `blur` events that may occur on any element, but are mostly handled on forms.
299
+
.را پوشش خواهیم داد که ممکن است در هر عنصری اتفاق بیفتند، اما بیشتر در فرمها مدیریت میشوند `blur` و `focus` در فصل بعدی ما
0 commit comments