黑马程序员技术交流社区
标题:
javascript之捕获事件
[打印本页]
作者:
Dreamcomesture
时间:
2016-6-15 15:50
标题:
javascript之捕获事件
问题:捕获document对象的keydown事件,再通过调用document.writeln函数输出当前按键
思路1:捕获keydown事件,然后从该事件的which属性中获得当前按键Unicode格式的键码
window.onload=function{
if ( document.addEventListener ){
document.addEventListener( "keydown", getKey , false );
}else if ( document.attachEvent ){
document.attachEvent( "keydown" getKey );
}
}
function getKey( event ){
var theEvent = event ? event : window.event;
document.writeln ( theEvent.which );
}
复制代码
作者:
wzg682735
时间:
2016-6-15 19:16
学习了,虽然还不太懂
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2