Rumah >hujung hadapan web >html tutorial >html中用户(在键盘上)按键时触发的事件属性onkeypress
实例
当用户按键时执行一段 JavaScript:
<input type="text" onkeypress="displayResult()">
浏览器支持
IE
Firefox
Chrome
Safari
Opera
所有主流浏览器都支持 onkeypress 属性。
定义和用法
onkeypress 属性在用户(在键盘上)按键时触发。
提示:相对于 onkeypress 事件的事件次序:
onkeydown onkeypress onkeyup
注释:在任何浏览器中,onkeypress 事件不会被所有按键触发(例如 ALT、CTRL、SHIFT、ESC)。
注释:onkeypress 属性不适用以下元素:dde6fb694e6711ae5e6f381704c04ae4、71af07a0e88a1ac1ff73f855702ac153、0c6dc11e160d3b678d68754cc175188a、93f0f5c25f18dab9d176bd4f6de5d30e、100db36a723c770d327fc0aef2ce13b1、d5ba1642137c3f32f4f4493ae923989c、e8e496c15ba93d81f6ea4fe5f55a2244、0c68fef83818661b6da588c77ca3985e、3f1c4e4b6b16bbbd69b2ee476dc4f83a、c9ccee2e6ea535a969eb3f532ad9fe89 或 b2386ffb911b14667cb8f0f91ea547a7。
HTML 4.01 与 HTML5 之间的差异
无。
语法
<element onkeypress="script">
属性值
值 | 描述 |
script | onkeypress 发生时运行的脚本。 |
<input class="text" type="text" name="PAGE" size="60" maxlength="2" value="<%=bg.getPAGE()%>" onkeypress="if(event.keyCode<48 || event.keyCode>57) event.returnValue=false;">
报错:
Multiple annotations found at this line: - Invalid character used in text string (57) event.returnValue=false;">). - Syntax error on token "||", ) expected - Attribute value (if(event.keyCode<48 || ) not closed. - Undefined attribute name (event.keyCode).
把大于57放在前面就对了。。。亲试
Atas ialah kandungan terperinci html中用户(在键盘上)按键时触发的事件属性onkeypress. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!