Form properties and methods by shahrzadJavadiKoushesh · Pull Request #285 · javascript-tutorial/fa.javascript.info
@@ -1,23 +1,24 @@
# Form properties and methods
# Form properties و methods
Forms and control elements, such as `<input>` have a lot of special properties and events. فرمها و control elementها مثل `<input>` دارای prperty و eventهای ویژهای هستند.
Working with forms will be much more convenient when we learn them. وقتی فرمها را یاد بگیریم، کار کردن با آنها بسیار راحتتر میشود.
## Navigation: form and elements
Document forms are members of the special collection `document.forms`. فرمهای document از اعضای مجموعهی ویژهی `document.forms` هستند.
این به اصطلاح یک مجموعهی نامگذاری شده است: هم نامگذاری شده و هم ترتیبدار شده است. برای دسترسی به فرم میتوانیم هم از نام آن و هم از شمارهی آن در document استفاده کنیم.
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.
```js no-beautify document.forms.my; // the form with name="my" document.forms[0]; // the first form in the document document.forms.my; // "my" = فرم با نام document.forms[0]; // document اولین فرم در ```
When we have a form, then any element is available in the named collection `form.elements`. وقتی یک فرم داریم، در این صورت هر elementای در مجموعهی نامگذاری شده با `form.elements` قابل دسترسی است.
For instance: برای مثال:
```html run height=40 <form name="my">Expand All
@@ -26,19 +27,19 @@ For instance:
</form>
<script> // get the form // form گرفتن let form = document.forms.my; // <form name="my"> element
// get the element // element گرفتن let elem = form.elements.one; // <input name="one"> element
alert(elem.value); // 1 </script> ```
There may be multiple elements with the same name. This is typical with radio buttons and checkboxes. ممکن است elementهای زیادی با نام یکسان وجود داشته باشند. این در مورد radio buttonها و checkboxها معمول است.
In that case, `form.elements[name]` is a *collection*. For instance: در آن صورت، `form.elements[name]` یک *مجموعه*است. برای مثال:
```html run height=40 <form>Expand All
@@ -57,11 +58,11 @@ alert(ageElems[0]); // [object HTMLInputElement]
</script>
```
These navigation properties do not depend on the tag structure. All control elements, no matter how deep they are in the form, are available in `form.elements`. این navigation propertyها به tag structure وابستگی ندارند. تمام control elementها، فرقی ندارد چقدر در فرم عمیق باشند، در `form.elements` قابل دسترسی هستند.
````smart header="Fieldsets as \"subforms\"" A form may have one or many `<fieldset>` elements inside it. They also have `elements` property that lists form controls inside them. .را درون خود فهرست میکنند form controls دارند که `elements` property در خودش داشته باشد. آنها همچنین `<fieldset>` elements یک فرم ممکن است یک یا چند
For instance:
Expand All
@@ -81,57 +82,57 @@ For instance:
let fieldset = form.elements.userFields;
alert(fieldset); // HTMLFieldSetElement
// we can get the input by name both from the form and from the fieldset // .دریافت کنیم fieldset و هم از form را با نام هم از input ما میتوانیم alert(fieldset.elements.login == form.elements.login); // true */!* </script> </body> ``` ````
````warn header="Shorter notation: `form.name`" There's a shorter notation: we can access the element as `form[index/name]`. ````warn header="نماد کوتاهتر: `form.name`" .دسترسی داشته باشیم element به `form[index/name]` کوتاهتر هم وجود دارد: ما میتوانیم با notation یک
In other words, instead of `form.elements.login` we can write `form.login`. به عبارت دیگر، به جای `form.elements.login` میتوانیم بنویسیم `form.login`.
That also works, but there's a minor issue: if we access an element, and then change its `name`, then it is still available under the old name (as well as under the new one). آن هم کار میکند، ولی یک مشکل جزئی وجود دارد: اگر به یک element دسترسی داشته باشیم، و بعد `name` آن را تغییر بدهیم، آنگاه آن هنوز با نام قدیمی قابل دسترسی است (همچنین با نام جدید)
That's easy to see in an example: آسانتر است که آن را در یک مثال ببینیم:
```html run height=40 <form id="form"> <input name="login"> </form>
<script> alert(form.elements.login == form.login); // true, the same <input> alert(form.elements.login == form.login); // true, همان <input>
form.login.name = "username"; // change the name of the input form.login.name = "username"; // را تغییر میدهد input نام
// form.elements updated the name: // میکند update را name، forms.elements alert(form.elements.login); // undefined alert(form.elements.username); // input
*!* // form allows both names: the new one and the old one // را مجاز میکند: هم جدید و هم قدیمی name فرم هر دو alert(form.username == form.login); // true */!* </script> ```
That's usually not a problem, however, because we rarely change names of form elements. با این حال، این معمولا یک مشکل نیست، چون ما به ندرت نام elementهای فرم را تغییر میدهیم.
````
## Backreference: element.form
For any element, the form is available as `element.form`. So a form references all elements, and elements reference the form. برای هر elementای، فرم به عنوان `element.form` قابل دسترسی است. بنابراین یک فرم به همهی elementها ارجاع میدهد و elementها هم به فرم ارجاع میدهند.
Here's the picture: این هم تصویرش است:

For instance: برای مثال:
```html run height=40 <form id="form">Expand All
@@ -151,64 +152,64 @@ For instance:
## Form elements
Let's talk about form controls. .صحبت کنیم form controls بیایید دربارهی
### input and textarea
We can access their value as `input.value` (string) or `input.checked` (boolean) for checkboxes and radio buttons. .به مقدار آنها دسترسی داشته باشیم radio buttons و checkboxes برای `input.value` (string) یا `input.checked` (boolean) ما میتوانیم با
Like this: مثل این:
```js input.value = "New value"; textarea.value = "New text"; input.value = "جدید value"; textarea.value = "جدید text";
input.checked = true; // for a checkbox or radio button input.checked = true; // radio button یا checkbox برای یک ```
```warn header="Use `textarea.value`, not `textarea.innerHTML`" Please note that even though `<textarea>...</textarea>` holds its value as nested HTML, we should never use `textarea.innerHTML` to access it. ```warn header="Use `textarea.value`, نه `textarea.innerHTML`" .به آن دسترسی داشته باشیم `textarea.innerHTML` تو در تو حفظ میکند اما ما هرگز نباید از طریق HTML مقدار خود را به عنوان `<textarea>...</textarea>` لطفا توجه کنید که با اینکه
It stores only the HTML that was initially on the page, not the current value. .که در ابتدا در صفحه بوده را ذخیره میکند، نه مقدار فعلی را HTML آن فقط ```
### select and option ### select و option
A `<select>` element has 3 important properties: :مهم دارد property سه `<select>` element یک
1. `select.options` -- the collection of `<option>` subelements, 2. `select.value` -- the *value* of the currently selected `<option>`, 3. `select.selectedIndex` -- the *number* of the currently selected `<option>`. 1. `select.options` -- `<option>` subelements مجموعهای از 2. `select.value` -- در حال حاضر انتخاب شده `<option>` *مقدار* 3. `select.selectedIndex` -- در حال حاضر انتخاب شده `<option>` *تعداد*
They provide three different ways of setting a value for a `<select>`: :عرضه میکنند `<select>` کردن یک مقدار برای set آنها سه راه مختلف برای
1. Find the corresponding `<option>` element (e.g. among `select.options`) and set its `option.selected` to `true`. 2. If we know a new value: set `select.value` to the new value. 3. If we know the new option number: set `select.selectedIndex` to that number. 1. .قرار میدهد `true` آن را برابر `option.selected` و مقدار (برای مثال `select.options`) متناظر را پیدا میکند `<option>` عنصر 2. .را برابر آن مقدار جدید قرار میدهد `select.value` اگر یک مقدار جدید را بدانیم: 3. .را برابر آن عدد قرار میدهد `select.selectedIndex` جدید را بدانیم: مقدار option number اگر
Here is an example of all three methods: :اینجا مثالی از هر سه متد میبینیم
```html run <select id="select"> <option value="apple">Apple</option> <option value="pear">Pear</option> <option value="banana">Banana</option> <option value="apple">سیب</option> <option value="pear">گلابی</option> <option value="banana">موز</option> </select>
<script> // all three lines do the same thing // تمام سه خط کار یکسانی انجام میدهند select.options[2].selected = true; select.selectedIndex = 2; select.value = 'banana'; // please note: options start from zero, so index 2 means the 3rd option. // .option از صفر شروع میشوند، پس اندیس دو یعنی سومین options :لطفا دقت داشته باشید </script> ```
Unlike most other controls, `<select>` allows to select multiple options at once if it has `multiple` attribute. This attribute is rarely used, though. .به ندرت استفاده میشود attribute به طور همزمان انتخاب شوند. با این حال، این option داشته باشد، اجازه میدهد که چند attribute `چند` `<select>` های دیگر اگرcontrol برعکس بیشتر
For multiple selected values, use the first way of setting values: add/remove the `selected` property from `<option>` subelements. .حذف/به آن اضافه کنید `<option>` subelements را از `selected` property برای چندین مقدار انتخاب شده، از روش اول برای تنظیم مقادیر استفاده کنید
Here's an example of how to get selected values from a multi-select: :مقدار انتخابشده را به دست آوریم ،multi-select اینجا یک مثال داریم از اینکه چگونه از یک
```html run <select id="select" *!*multiple*/!*>Expand All
@@ -218,7 +219,7 @@ Here's an example of how to get selected values from a multi-select:
</select>
<script> // get all selected values from multi-select // multi-select گرفتن تمام مقادیر انتخابشده از let selected = Array.from(select.options) .filter(option => option.selected) .map(option => option.value);Expand All
@@ -227,72 +228,72 @@ Here's an example of how to get selected values from a multi-select:
</script>
```
The full specification of the `<select>` element is available in the specification <https://html.spec.whatwg.org/multipage/forms.html#the-select-element>. .موجود است <https://html.spec.whatwg.org/multipage/forms.html#the-select-element> در مشخصات `<select>` element مشخصات کامل
### new Option ### جدید Option
In the [specification](https://html.spec.whatwg.org/multipage/forms.html#the-option-element) there's a nice short syntax to create an `<option>` element: :وجود دارد <option>` element کوتاه و زیبا برای ایجاد یک syntax یک [مشخصات](https://html.spec.whatwg.org/multipage/forms.html#the-option-element) در
```js option = new Option(text, value, defaultSelected, selected); ```
This syntax is optional. We can use `document.createElement('option')` and set attributes manually. Still, it may be shorter, so here are the parameters: :را به صورت دستی مقداردهی کنیم. با این حال، ممکن است کوتاهتر باشد پس اینجا پارامترها وجود دارند attributes استقاده کنیم و `document.createElement('option')` اختیاری است، ما میتوانیم از syntax این
- `text` -- the text inside the option, - `value` -- the option value, - `defaultSelected` -- if `true`, then `selected` HTML-attribute is created, - `selected` -- if `true`, then the option is selected. - `text` -- option متن درون, - `value` -- option مقدار, - `defaultSelected` -- ایجاد میشود `selected` HTML-attribute باشد `true` اگر - `selected` -- انتخاب میشود option باشد `true` اگر
The difference between `defaultSelected` and `selected` is that `defaultSelected` sets the HTML-attribute (that we can get using `option.getAttribute('selected')`, while `selected` sets whether the option is selected or not. .انتخاب شده است یا نه option مشخص میکند که آیا `selected` در حالی که (آن را بگیریم `option.getAttribute('selected')` که ما میتوانیم با) میکند set را HTML-attribute مقدار `defaultSelected` در این است که `selected` و `defaultSelected` تفاوت بین
In practice, one should usually set _both_ values to `true` or `false`. (Or, simply omit them; both default to `false`.) (`false` یا به سادگی حذف شوند، مقدار پیشفرض هر دو) .باشند `false` یا `true` در عمل باید معمولا _هر دو_ مقدار
For instance, here's a new "unselected" option: برای مثال، اینجا بک "unselected" option داریم:
```js let option = new Option("Text", "value"); // creates <option value="value">Text</option> // ایجاد میکند <option value="value">Text</option> ```
The same option, but selected: شده select اما option همان
```js let option = new Option("Text", "value", true, true); ```
Option elements have properties: :دارند property یک سری Option elements
`option.selected` : Is the option selected. : انتخاب شده است یا نه option
`option.index` : The number of the option among the others in its `<select>`. خودش `<select>` در بین بقیه option عدد :
`option.text` : Text content of the option (seen by the visitor). (توسط بازدیدکننده دیده میشود) option محتوای متنی :
## References ## منابع
- Specification: <https://html.spec.whatwg.org/multipage/forms.html>. - جزئیات: <https://html.spec.whatwg.org/multipage/forms.html>.
## Summary ## خلاصه
Form navigation:
`document.forms` : A form is available as `document.forms[name/index]`. .قابل دسترسی است `document.forms[name/index]` یک فرم با :
`form.elements` : Form elements are available as `form.elements[name/index]`, or can use just `form[name/index]`. The `elements` property also works for `<fieldset>`. .کار میکنند `<fieldset>` همچنین با `elements` property استفاده کرد. `form[name/index]` قابل دسترسی هستند، یا فقط میتوان از `form.elements[name/index]` با Form elements عناصر :
`element.form` : Elements reference their form in the `form` property. .به فرم خود ارجاع میدهند `form` property عناصر در :
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.) (.استفاده کنید که مشخص میکند یک مقدار انتخاب شده است یا نه `input.checked` از radio buttons و checkboxes برای) و ... قابل دسترسی است. `input.value`، `textarea.value`، `select.value` با value مقدار
For `<select>`, one can also get the value by the index `select.selectedIndex` or through the options collection `select.options`. .به دست آورد options collection `select.options` یا از طریق `select.selectedIndex` همچنین میتوان مقدار را با اندیس `<select>` برای
These are the basics to start working with forms. We'll meet many examples further in the tutorial. اینها مبانی شروع کار با فرمها هستند. ما مثالهای بیشتری را در آموزش خواهیم دید.
In the next chapter we'll cover `focus` and `blur` events that may occur on any element, but are mostly handled on forms. .را پوشش خواهیم داد که ممکن است در هر عنصری اتفاق بیفتند، اما بیشتر در فرمها مدیریت میشوند `blur` و `focus` در فصل بعدی ما
Forms and control elements, such as `<input>` have a lot of special properties and events. فرمها و control elementها مثل `<input>` دارای prperty و eventهای ویژهای هستند.
Working with forms will be much more convenient when we learn them. وقتی فرمها را یاد بگیریم، کار کردن با آنها بسیار راحتتر میشود.
## Navigation: form and elements
Document forms are members of the special collection `document.forms`. فرمهای document از اعضای مجموعهی ویژهی `document.forms` هستند.
این به اصطلاح یک مجموعهی نامگذاری شده است: هم نامگذاری شده و هم ترتیبدار شده است. برای دسترسی به فرم میتوانیم هم از نام آن و هم از شمارهی آن در document استفاده کنیم.
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.
```js no-beautify document.forms.my; // the form with name="my" document.forms[0]; // the first form in the document document.forms.my; // "my" = فرم با نام document.forms[0]; // document اولین فرم در ```
When we have a form, then any element is available in the named collection `form.elements`. وقتی یک فرم داریم، در این صورت هر elementای در مجموعهی نامگذاری شده با `form.elements` قابل دسترسی است.
For instance: برای مثال:
```html run height=40 <form name="my">
<script> // get the form // form گرفتن let form = document.forms.my; // <form name="my"> element
// get the element // element گرفتن let elem = form.elements.one; // <input name="one"> element
alert(elem.value); // 1 </script> ```
There may be multiple elements with the same name. This is typical with radio buttons and checkboxes. ممکن است elementهای زیادی با نام یکسان وجود داشته باشند. این در مورد radio buttonها و checkboxها معمول است.
In that case, `form.elements[name]` is a *collection*. For instance: در آن صورت، `form.elements[name]` یک *مجموعه*است. برای مثال:
```html run height=40 <form>
These navigation properties do not depend on the tag structure. All control elements, no matter how deep they are in the form, are available in `form.elements`. این navigation propertyها به tag structure وابستگی ندارند. تمام control elementها، فرقی ندارد چقدر در فرم عمیق باشند، در `form.elements` قابل دسترسی هستند.
````smart header="Fieldsets as \"subforms\"" A form may have one or many `<fieldset>` elements inside it. They also have `elements` property that lists form controls inside them. .را درون خود فهرست میکنند form controls دارند که `elements` property در خودش داشته باشد. آنها همچنین `<fieldset>` elements یک فرم ممکن است یک یا چند
For instance:
// we can get the input by name both from the form and from the fieldset // .دریافت کنیم fieldset و هم از form را با نام هم از input ما میتوانیم alert(fieldset.elements.login == form.elements.login); // true */!* </script> </body> ``` ````
````warn header="Shorter notation: `form.name`" There's a shorter notation: we can access the element as `form[index/name]`. ````warn header="نماد کوتاهتر: `form.name`" .دسترسی داشته باشیم element به `form[index/name]` کوتاهتر هم وجود دارد: ما میتوانیم با notation یک
In other words, instead of `form.elements.login` we can write `form.login`. به عبارت دیگر، به جای `form.elements.login` میتوانیم بنویسیم `form.login`.
That also works, but there's a minor issue: if we access an element, and then change its `name`, then it is still available under the old name (as well as under the new one). آن هم کار میکند، ولی یک مشکل جزئی وجود دارد: اگر به یک element دسترسی داشته باشیم، و بعد `name` آن را تغییر بدهیم، آنگاه آن هنوز با نام قدیمی قابل دسترسی است (همچنین با نام جدید)
That's easy to see in an example: آسانتر است که آن را در یک مثال ببینیم:
```html run height=40 <form id="form"> <input name="login"> </form>
<script> alert(form.elements.login == form.login); // true, the same <input> alert(form.elements.login == form.login); // true, همان <input>
form.login.name = "username"; // change the name of the input form.login.name = "username"; // را تغییر میدهد input نام
// form.elements updated the name: // میکند update را name، forms.elements alert(form.elements.login); // undefined alert(form.elements.username); // input
*!* // form allows both names: the new one and the old one // را مجاز میکند: هم جدید و هم قدیمی name فرم هر دو alert(form.username == form.login); // true */!* </script> ```
That's usually not a problem, however, because we rarely change names of form elements. با این حال، این معمولا یک مشکل نیست، چون ما به ندرت نام elementهای فرم را تغییر میدهیم.
````
## Backreference: element.form
For any element, the form is available as `element.form`. So a form references all elements, and elements reference the form. برای هر elementای، فرم به عنوان `element.form` قابل دسترسی است. بنابراین یک فرم به همهی elementها ارجاع میدهد و elementها هم به فرم ارجاع میدهند.
Here's the picture: این هم تصویرش است:

For instance: برای مثال:
```html run height=40 <form id="form">
## Form elements
Let's talk about form controls. .صحبت کنیم form controls بیایید دربارهی
### input and textarea
We can access their value as `input.value` (string) or `input.checked` (boolean) for checkboxes and radio buttons. .به مقدار آنها دسترسی داشته باشیم radio buttons و checkboxes برای `input.value` (string) یا `input.checked` (boolean) ما میتوانیم با
Like this: مثل این:
```js input.value = "New value"; textarea.value = "New text"; input.value = "جدید value"; textarea.value = "جدید text";
input.checked = true; // for a checkbox or radio button input.checked = true; // radio button یا checkbox برای یک ```
```warn header="Use `textarea.value`, not `textarea.innerHTML`" Please note that even though `<textarea>...</textarea>` holds its value as nested HTML, we should never use `textarea.innerHTML` to access it. ```warn header="Use `textarea.value`, نه `textarea.innerHTML`" .به آن دسترسی داشته باشیم `textarea.innerHTML` تو در تو حفظ میکند اما ما هرگز نباید از طریق HTML مقدار خود را به عنوان `<textarea>...</textarea>` لطفا توجه کنید که با اینکه
It stores only the HTML that was initially on the page, not the current value. .که در ابتدا در صفحه بوده را ذخیره میکند، نه مقدار فعلی را HTML آن فقط ```
### select and option ### select و option
A `<select>` element has 3 important properties: :مهم دارد property سه `<select>` element یک
1. `select.options` -- the collection of `<option>` subelements, 2. `select.value` -- the *value* of the currently selected `<option>`, 3. `select.selectedIndex` -- the *number* of the currently selected `<option>`. 1. `select.options` -- `<option>` subelements مجموعهای از 2. `select.value` -- در حال حاضر انتخاب شده `<option>` *مقدار* 3. `select.selectedIndex` -- در حال حاضر انتخاب شده `<option>` *تعداد*
They provide three different ways of setting a value for a `<select>`: :عرضه میکنند `<select>` کردن یک مقدار برای set آنها سه راه مختلف برای
1. Find the corresponding `<option>` element (e.g. among `select.options`) and set its `option.selected` to `true`. 2. If we know a new value: set `select.value` to the new value. 3. If we know the new option number: set `select.selectedIndex` to that number. 1. .قرار میدهد `true` آن را برابر `option.selected` و مقدار (برای مثال `select.options`) متناظر را پیدا میکند `<option>` عنصر 2. .را برابر آن مقدار جدید قرار میدهد `select.value` اگر یک مقدار جدید را بدانیم: 3. .را برابر آن عدد قرار میدهد `select.selectedIndex` جدید را بدانیم: مقدار option number اگر
Here is an example of all three methods: :اینجا مثالی از هر سه متد میبینیم
```html run <select id="select"> <option value="apple">Apple</option> <option value="pear">Pear</option> <option value="banana">Banana</option> <option value="apple">سیب</option> <option value="pear">گلابی</option> <option value="banana">موز</option> </select>
<script> // all three lines do the same thing // تمام سه خط کار یکسانی انجام میدهند select.options[2].selected = true; select.selectedIndex = 2; select.value = 'banana'; // please note: options start from zero, so index 2 means the 3rd option. // .option از صفر شروع میشوند، پس اندیس دو یعنی سومین options :لطفا دقت داشته باشید </script> ```
Unlike most other controls, `<select>` allows to select multiple options at once if it has `multiple` attribute. This attribute is rarely used, though. .به ندرت استفاده میشود attribute به طور همزمان انتخاب شوند. با این حال، این option داشته باشد، اجازه میدهد که چند attribute `چند` `<select>` های دیگر اگرcontrol برعکس بیشتر
For multiple selected values, use the first way of setting values: add/remove the `selected` property from `<option>` subelements. .حذف/به آن اضافه کنید `<option>` subelements را از `selected` property برای چندین مقدار انتخاب شده، از روش اول برای تنظیم مقادیر استفاده کنید
Here's an example of how to get selected values from a multi-select: :مقدار انتخابشده را به دست آوریم ،multi-select اینجا یک مثال داریم از اینکه چگونه از یک
```html run <select id="select" *!*multiple*/!*>
<script> // get all selected values from multi-select // multi-select گرفتن تمام مقادیر انتخابشده از let selected = Array.from(select.options) .filter(option => option.selected) .map(option => option.value);
The full specification of the `<select>` element is available in the specification <https://html.spec.whatwg.org/multipage/forms.html#the-select-element>. .موجود است <https://html.spec.whatwg.org/multipage/forms.html#the-select-element> در مشخصات `<select>` element مشخصات کامل
### new Option ### جدید Option
In the [specification](https://html.spec.whatwg.org/multipage/forms.html#the-option-element) there's a nice short syntax to create an `<option>` element: :وجود دارد <option>` element کوتاه و زیبا برای ایجاد یک syntax یک [مشخصات](https://html.spec.whatwg.org/multipage/forms.html#the-option-element) در
```js option = new Option(text, value, defaultSelected, selected); ```
This syntax is optional. We can use `document.createElement('option')` and set attributes manually. Still, it may be shorter, so here are the parameters: :را به صورت دستی مقداردهی کنیم. با این حال، ممکن است کوتاهتر باشد پس اینجا پارامترها وجود دارند attributes استقاده کنیم و `document.createElement('option')` اختیاری است، ما میتوانیم از syntax این
- `text` -- the text inside the option, - `value` -- the option value, - `defaultSelected` -- if `true`, then `selected` HTML-attribute is created, - `selected` -- if `true`, then the option is selected. - `text` -- option متن درون, - `value` -- option مقدار, - `defaultSelected` -- ایجاد میشود `selected` HTML-attribute باشد `true` اگر - `selected` -- انتخاب میشود option باشد `true` اگر
The difference between `defaultSelected` and `selected` is that `defaultSelected` sets the HTML-attribute (that we can get using `option.getAttribute('selected')`, while `selected` sets whether the option is selected or not. .انتخاب شده است یا نه option مشخص میکند که آیا `selected` در حالی که (آن را بگیریم `option.getAttribute('selected')` که ما میتوانیم با) میکند set را HTML-attribute مقدار `defaultSelected` در این است که `selected` و `defaultSelected` تفاوت بین
In practice, one should usually set _both_ values to `true` or `false`. (Or, simply omit them; both default to `false`.) (`false` یا به سادگی حذف شوند، مقدار پیشفرض هر دو) .باشند `false` یا `true` در عمل باید معمولا _هر دو_ مقدار
For instance, here's a new "unselected" option: برای مثال، اینجا بک "unselected" option داریم:
```js let option = new Option("Text", "value"); // creates <option value="value">Text</option> // ایجاد میکند <option value="value">Text</option> ```
The same option, but selected: شده select اما option همان
```js let option = new Option("Text", "value", true, true); ```
Option elements have properties: :دارند property یک سری Option elements
`option.selected` : Is the option selected. : انتخاب شده است یا نه option
`option.index` : The number of the option among the others in its `<select>`. خودش `<select>` در بین بقیه option عدد :
`option.text` : Text content of the option (seen by the visitor). (توسط بازدیدکننده دیده میشود) option محتوای متنی :
## References ## منابع
- Specification: <https://html.spec.whatwg.org/multipage/forms.html>. - جزئیات: <https://html.spec.whatwg.org/multipage/forms.html>.
## Summary ## خلاصه
Form navigation:
`document.forms` : A form is available as `document.forms[name/index]`. .قابل دسترسی است `document.forms[name/index]` یک فرم با :
`form.elements` : Form elements are available as `form.elements[name/index]`, or can use just `form[name/index]`. The `elements` property also works for `<fieldset>`. .کار میکنند `<fieldset>` همچنین با `elements` property استفاده کرد. `form[name/index]` قابل دسترسی هستند، یا فقط میتوان از `form.elements[name/index]` با Form elements عناصر :
`element.form` : Elements reference their form in the `form` property. .به فرم خود ارجاع میدهند `form` property عناصر در :
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.) (.استفاده کنید که مشخص میکند یک مقدار انتخاب شده است یا نه `input.checked` از radio buttons و checkboxes برای) و ... قابل دسترسی است. `input.value`، `textarea.value`، `select.value` با value مقدار
For `<select>`, one can also get the value by the index `select.selectedIndex` or through the options collection `select.options`. .به دست آورد options collection `select.options` یا از طریق `select.selectedIndex` همچنین میتوان مقدار را با اندیس `<select>` برای
These are the basics to start working with forms. We'll meet many examples further in the tutorial. اینها مبانی شروع کار با فرمها هستند. ما مثالهای بیشتری را در آموزش خواهیم دید.
In the next chapter we'll cover `focus` and `blur` events that may occur on any element, but are mostly handled on forms. .را پوشش خواهیم داد که ممکن است در هر عنصری اتفاق بیفتند، اما بیشتر در فرمها مدیریت میشوند `blur` و `focus` در فصل بعدی ما