aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/globaleventhandlers/onkeyup
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/zh-cn/web/api/globaleventhandlers/onkeyup
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/zh-cn/web/api/globaleventhandlers/onkeyup')
-rw-r--r--files/zh-cn/web/api/globaleventhandlers/onkeyup/index.html31
1 files changed, 31 insertions, 0 deletions
diff --git a/files/zh-cn/web/api/globaleventhandlers/onkeyup/index.html b/files/zh-cn/web/api/globaleventhandlers/onkeyup/index.html
new file mode 100644
index 0000000000..cd9cb7f867
--- /dev/null
+++ b/files/zh-cn/web/api/globaleventhandlers/onkeyup/index.html
@@ -0,0 +1,31 @@
+---
+title: GlobalEventHandlers.onkeyup
+slug: Web/API/GlobalEventHandlers/onkeyup
+translation_of: Web/API/GlobalEventHandlers/onkeyup
+---
+<div>{{ ApiRef("HTML DOM") }}</div>
+
+<h3 id="Summary">Summary</h3>
+
+<p><strong>onkeyup</strong>属性用来获取或设置当前元素的<code>keyup</code>事件的事件处理函数.</p>
+
+<h3 id="语法">语法</h3>
+
+<pre class="eval">element.onkeyup = <em>event handling code</em>
+</pre>
+
+<h3 id="例子">例子</h3>
+
+<pre class="eval"> &lt;input type="text" onKeyUp="keyWasPressed(event)"&gt;
+ &lt;script&gt;function keyWasPressed(evt){ alert(evt.keyCode) }&lt;/script&gt;
+</pre>
+
+<h3 id="备注">备注</h3>
+
+<p>在当前元素上释放键盘按键时会触发<code>keyup事件.</code></p>
+
+<h3 id="规范">规范</h3>
+
+<p>不属于任何公开的规范.</p>
+
+<p>{{ languages( { "fr": "fr/DOM/element.onkeyup", "pl": "pl/DOM/element.onkeyup", "en": "en/DOM/element.onkeyup" } ) }}</p>