diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:52 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:52 -0500 |
commit | 074785cea106179cb3305637055ab0a009ca74f2 (patch) | |
tree | e6ae371cccd642aa2b67f39752a2cdf1fd4eb040 /files/ru/web/html/element/optgroup | |
parent | da78a9e329e272dedb2400b79a3bdeebff387d47 (diff) | |
download | translated-content-074785cea106179cb3305637055ab0a009ca74f2.tar.gz translated-content-074785cea106179cb3305637055ab0a009ca74f2.tar.bz2 translated-content-074785cea106179cb3305637055ab0a009ca74f2.zip |
initial commit
Diffstat (limited to 'files/ru/web/html/element/optgroup')
-rw-r--r-- | files/ru/web/html/element/optgroup/index.html | 119 |
1 files changed, 119 insertions, 0 deletions
diff --git a/files/ru/web/html/element/optgroup/index.html b/files/ru/web/html/element/optgroup/index.html new file mode 100644 index 0000000000..7f5ff96cf8 --- /dev/null +++ b/files/ru/web/html/element/optgroup/index.html @@ -0,0 +1,119 @@ +--- +title: <optgroup> +slug: Web/HTML/Element/optgroup +tags: + - HTML + - HTML forms + - Описание + - Формы + - Элемент +translation_of: Web/HTML/Element/optgroup +--- +<p><strong>HTML-элемент <code><optgroup></code> </strong>позволяет группировать опции, находящиеся внутри элемента {{HTMLElement("select")}}.</p> + +<table class="properties"> + <tbody> + <tr> + <th scope="row"><a href="/en-US/docs/HTML/Content_categories">Категории контента</a></th> + <td>Нет</td> + </tr> + <tr> + <th scope="row">Допустимый контент</th> + <td>Ноль или более {{HTMLElement("option")}} элементов.</td> + </tr> + <tr> + <th scope="row">Пропуск тегов</th> + <td>Открывающий тег обязателен. Закрывающий тег может быть опущен, если сразу после элемента находится следующий элемент <code><optgroup></code>, или если это последний элемент внутри родителя.</td> + </tr> + <tr> + <th scope="row">Допустимые родители</th> + <td>Элемент {{HTMLElement("select")}}</td> + </tr> + <tr> + <th scope="row">Допустимые ARIA-роли</th> + <td>Нет</td> + </tr> + <tr> + <th scope="row">DOM-интерфейс</th> + <td>{{domxref("HTMLOptGroupElement")}}</td> + </tr> + </tbody> +</table> + +<p>{{Note("Элементы optgroup не могут быть вложенными друг в друга.")}}</p> + +<h2 id="Аттрибуты">Аттрибуты</h2> + +<p>Элемент <code><optgroup></code> допускает использование <a href="/en-US/docs/Web/HTML/Global_attributes">глобальных аттрибутов</a>.</p> + +<dl> + <dt>{{htmlattrdef("disabled")}}</dt> + <dd>Если установить этот аттрибут, опции, находящиеся внутри элемента станут недоступными для выбора. Часто браузеры отображают эти опции серым цветом и игнорируют срабатывающие на них события, таие как события мыши или события получения фокуса.</dd> + <dt>{{htmlattrdef("label")}}</dt> + <dd>Имя группы, которое будет отображено браузером в выпадающем списке. Этот атрибут обязателен.</dd> +</dl> + +<h2 id="Пример">Пример</h2> + +<pre class="brush: html"><select> + <optgroup label="Группа 1"> + <option>Опция 1.1</option> + </optgroup> + <optgroup label="Группа 2"> + <option>Опция 2.1</option> + <option>Опция 2.2</option> + </optgroup> + <optgroup label="Группа 3" disabled> + <option>Опция 3.1</option> + <option>Опция 3.2</option> + <option>Опция 3.3</option> + </optgroup> +</select> +</pre> + +<h3 id="Результат">Результат</h3> + +<p>{{EmbedLiveSample('Пример')}}</p> + +<h2 id="Спецификации">Спецификации</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">Спецификация</th> + <th scope="col">Статус</th> + <th scope="col">Комментарии</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{SpecName('HTML WHATWG', 'forms.html#the-optgroup-element', '<optgroup>')}}</td> + <td>{{Spec2('HTML WHATWG')}}</td> + <td> </td> + </tr> + <tr> + <td>{{SpecName('HTML5 W3C', 'forms.html#the-optgroup-element', '<optgroup>')}}</td> + <td>{{Spec2('HTML5 W3C')}}</td> + <td> </td> + </tr> + <tr> + <td>{{SpecName('HTML4.01', 'interact/forms.html#h-17.6', '<optgroup>')}}</td> + <td>{{Spec2('HTML4.01')}}</td> + <td> </td> + </tr> + </tbody> +</table> + +<h2 id="Совместимость_с_браузерами">Совместимость с браузерами</h2> + + + +<p>{{Compat("html.elements.optgroup")}}</p> + +<h2 id="Смотрите_также">Смотрите также</h2> + +<ul> + <li>Элементы, имеющие отношение к формам: {{HTMLElement("form")}}, {{HTMLElement("legend")}}, {{HTMLElement("label")}}, {{HTMLElement("button")}}, {{HTMLElement("select")}}, {{HTMLElement("datalist")}}, {{HTMLElement("option")}}, {{HTMLElement("fieldset")}}, {{HTMLElement("textarea")}}, {{HTMLElement("keygen")}}, {{HTMLElement("input")}}, {{HTMLElement("output")}}, {{HTMLElement("progress")}} и {{HTMLElement("meter")}}.</li> +</ul> + +<p>{{HTMLRef}}</p> |