diff options
Diffstat (limited to 'files/ru/web/html/element/output/index.html')
-rw-r--r-- | files/ru/web/html/element/output/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ru/web/html/element/output/index.html b/files/ru/web/html/element/output/index.html index 1e2ef166cd..f184b9be4d 100644 --- a/files/ru/web/html/element/output/index.html +++ b/files/ru/web/html/element/output/index.html @@ -57,7 +57,7 @@ translation_of: Web/HTML/Element/output <p>Эта форма содержит слайдер, значение которого находится в пределах от 0 до 100, и элемент {{HTMLElement("input")}}, в который можно ввести второе значение. Два числа складываются и результат отображается в элементе <code><output></code> каждый раз, когда значение любого управляющего элемента меняется.</p> -<pre class="brush: html notranslate"><form oninput="result.value=parseInt(a.value)+parseInt(b.value)"> +<pre class="brush: html"><form oninput="result.value=parseInt(a.value)+parseInt(b.value)"> <input type="range" name="b" value="50" /> + <input type="number" name="a" value="10" /> = <output name="result">60</output> |