diff options
author | MDN <actions@users.noreply.github.com> | 2021-09-09 00:49:39 +0000 |
---|---|---|
committer | MDN <actions@users.noreply.github.com> | 2021-09-09 00:49:39 +0000 |
commit | fdc77da2ba02ff78b23fc129ec7ee20c0fa28afb (patch) | |
tree | c194112508d253c64aebf8273cb8566fceaf8697 /files/ru/web/api/uievent | |
parent | d6e1ef64cdf9b8592a58a30725c208753729b08a (diff) | |
download | translated-content-fdc77da2ba02ff78b23fc129ec7ee20c0fa28afb.tar.gz translated-content-fdc77da2ba02ff78b23fc129ec7ee20c0fa28afb.tar.bz2 translated-content-fdc77da2ba02ff78b23fc129ec7ee20c0fa28afb.zip |
[CRON] sync translated content
Diffstat (limited to 'files/ru/web/api/uievent')
-rw-r--r-- | files/ru/web/api/uievent/which/index.html | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/files/ru/web/api/uievent/which/index.html b/files/ru/web/api/uievent/which/index.html new file mode 100644 index 0000000000..3c2fc530cc --- /dev/null +++ b/files/ru/web/api/uievent/which/index.html @@ -0,0 +1,98 @@ +--- +title: KeyboardEvent.which +slug: Web/API/UIEvent/which +tags: + - API + - DOM + - Deprecated + - Property + - Reference +translation_of: Web/API/KeyboardEvent/which +original_slug: Web/API/KeyboardEvent/which +--- +<div>{{APIRef ("События DOM")}} {{Deprecated_header}}<br> +Свойство which только для чтения интерфейса {{domxref ("KeyboardEvent")}} возвращает числовой код клавиши нажатой клавиши или код символа (charCode) для нажатой буквенно-цифровой клавиши.</div> + + + +<h2 id="Синтаксис">Синтаксис</h2> + +<pre class="syntaxbox">var <em>keyResult</em> = <em>event</em>.which; +</pre> + +<h3 id="Параметры">Параметры</h3> + +<ul> + <li><code>keyResult содержит числовой код для конкретной нажатой клавиши, в зависимости от того, была ли нажата буквенно-цифровая или не буквенно-цифровая клавиша. Пожалуйста, смотрите {{domxref ("KeyboardEvent.charCode")}} и {{domxref ("KeyboardEvent.keyCode")}} для получения дополнительной информации.</code></li> +</ul> + +<h2 id="Примеры">Примеры</h2> + +<pre class="brush: html"><html> +<head> +<title>charCode/keyCode/which example</title> + +<script type="text/javascript"> + +function showKeyPress(evt) { +alert("onkeypress handler: \n" + + "keyCode property: " + evt.keyCode + "\n" + + "which property: " + evt.which + "\n" + + "charCode property: " + evt.charCode + "\n" + + "Character Key Pressed: " + + String.fromCharCode(evt.charCode) + "\n" + ); +} + + +function keyDown(evt) { +alert("onkeydown handler: \n" + + "keyCode property: " + evt.keyCode + "\n" + + "which property: " + evt.which + "\n" + ); +} + +</script> +</head> + +<body + onkeypress="showKeyPress(event);" + onkeydown="keyDown(event);" +> + +<p>Please press any key.</p> + +</body> +</html> +</pre> + +<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('DOM3 Events','#legacy-interface-KeyboardEvent','KeyboardEvent.which')}}</td> + <td>{{Spec2('DOM3 Events')}}</td> + <td>Initial definition; specified as deprecated</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility">Browser compatibility</h2> + + + +<p>{{Compat("api.KeyboardEvent.which")}}</p> + +<h2 id="See_also">See also</h2> + +<ul> + <li>{{domxref("KeyboardEvent")}}, the interface this property belongs too.</li> +</ul> |