aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/html/element/optgroup
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:42:52 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:42:52 -0500
commit074785cea106179cb3305637055ab0a009ca74f2 (patch)
treee6ae371cccd642aa2b67f39752a2cdf1fd4eb040 /files/ru/web/html/element/optgroup
parentda78a9e329e272dedb2400b79a3bdeebff387d47 (diff)
downloadtranslated-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.html119
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>&lt;optgroup&gt;</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>&lt;optgroup&gt;</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>&lt;optgroup&gt;</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">&lt;select&gt;
+ &lt;optgroup label="Группа 1"&gt;
+ &lt;option&gt;Опция 1.1&lt;/option&gt;
+ &lt;/optgroup&gt;
+ &lt;optgroup label="Группа 2"&gt;
+ &lt;option&gt;Опция 2.1&lt;/option&gt;
+ &lt;option&gt;Опция 2.2&lt;/option&gt;
+ &lt;/optgroup&gt;
+ &lt;optgroup label="Группа 3" disabled&gt;
+ &lt;option&gt;Опция 3.1&lt;/option&gt;
+ &lt;option&gt;Опция 3.2&lt;/option&gt;
+ &lt;option&gt;Опция 3.3&lt;/option&gt;
+ &lt;/optgroup&gt;
+&lt;/select&gt;
+</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', '&lt;optgroup&gt;')}}</td>
+ <td>{{Spec2('HTML WHATWG')}}</td>
+ <td> </td>
+ </tr>
+ <tr>
+ <td>{{SpecName('HTML5 W3C', 'forms.html#the-optgroup-element', '&lt;optgroup&gt;')}}</td>
+ <td>{{Spec2('HTML5 W3C')}}</td>
+ <td> </td>
+ </tr>
+ <tr>
+ <td>{{SpecName('HTML4.01', 'interact/forms.html#h-17.6', '&lt;optgroup&gt;')}}</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>