JavaScript语言参考手册
JavaScript手册
·
目录
·
此参考中包含的内容
·
轻松上手
·
简介
·
操作符
·
语句
·
核心
·
文档
·
窗口
·
表单
·
浏览器
·
事件和事件句柄
·
LiveWire数据库服务
·
进程管理服务
·
实用工具
·
全局函数
·
LiveConnect的Java包
·
索引
·
版权
【目录】
【上一页】
【下一页】
【索引】
onKeyDown
Executes JavaScript code when a KeyDown event occurs; that is, when the user depresses a key.
事件适用对象
document
,
Image
,
Link
,
Textarea
实现版本
Navigator 4.0
语法
onKeyDown="handlerText"
参数
handlerText
JavaScript 代码或对一个 JavaScript 函数的调用。
使用的事件属性
type
标明了事件的类型。
target
标明了事件原来发送的对象。
layerX, layerY,
pageX, pageY,
screenX, screenY
For an event over a window, these represent the cursor location at the time the event occurred. For an event over a form, they represent the position of the form element.
which
Represents the ASCII value of the key pressed. To get the actual letter, number, or symbol of the pressed key, use the
String.fromCharCode
方法。 To set this 属性 when the ASCII value is unknown, use the
String.charCodeAt
方法。
modifiers
Contains the list of modifier keys held down when the event occurred.
描述
A KeyDown event always occurs before a KeyPress event. If onKeyDown returns false, no KeyPress events occur. This prevents KeyPress events occurring due to the user holding down a key.
参看
onKeyPress
,
onKeyUp
要获得关于事件句柄的常规信息,请看
“事件的常规信息”
。
要获得关于事件对象的信息,请看
事件
。
【目录】
【上一页】
【下一页】
【索引】
返回页面顶部
JavaScript中文手册
由
站长在线
整理