我有以下......
<a href="http://www.example.com/" onkeyup="my_func(e);">www.example.com</a>
我在尝试将事件传递给函数时遇到了麻烦。我在Firefox中遇到以下错误...
ReferenceError:e未定义
我只需要访问e.keyCode来确定是否按下了特定的键。
答案 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>