JavaScript onkeyup从锚点传递键盘事件

时间:2014-04-11 23:08:40

标签: javascript events

我有以下......

<a href="http://www.example.com/" onkeyup="my_func(e);">www.example.com</a>

我在尝试将事件传递给函数时遇到了麻烦。我在Firefox中遇到以下错误...

  

ReferenceError:e未定义

我只需要访问e.keyCode来确定是否按下了特定的键。

1 个答案:

答案 0 :(得分:1)

更改此

<a href="http://www.example.com/" onkeyup="my_func(e);">www.example.com</a>

到这个

<a href="http://www.example.com/" onkeyup="my_func(event);">www.example.com</a>