将 keydown 设置为在 jquery 中无法在 Firefox 中运行的情况下运行
基本上我需要我的页面响应左右箭头键。所以试图让 body 标签触发一个事件 - 让它在 Chrome 等中工作,在 Firefox 中不会做任何事情 - 尝试谷歌搜索,经过 50 个不同的结果仍然没有骰子。有人有什么想法吗?
这是我所拥有的与 chrome-body 标记一起使用的脚本,
调用此脚本
$(document).ready(adjust());
----------------- -出于测试目的,javascript
function adjust(){
$("body").keydown(function(){arrowKey(event.keyCode);});
}
function arrowKey(k){
alert(k);
if (k==37)
alert("Left");
else if (k==39)
alert("Right");
else if (k==32)
alert("space");
}
ive 将函数中的方法替换为警报,但我需要能够根据按下的箭头调用不同的函数
basicly i need my page to respond to left and right arrow keys. so trying to have the body tag trigger an event- got it working in chrome etc, will do nothing in firefox- tried googling and after 50 different results still no dice. anyone got any ideas?
heres what i have that works with chrome-
body tag calls this script
$(document).ready(adjust());
------------------the javascript
function adjust(){
$("body").keydown(function(){arrowKey(event.keyCode);});
}
function arrowKey(k){
alert(k);
if (k==37)
alert("Left");
else if (k==39)
alert("Right");
else if (k==32)
alert("space");
}
ive replaced methods with alerts in the function for testing purpose but i need to be able to call different functions based on which arrow is pressed
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
实际上,即使没有“事件”,它也可以在 chrome 中工作,因为 event 是 chrome 中的关键字,并且它填充了最后触发的事件。
它在 Firefox 中不起作用的原因是因为您应该像这样分配事件:
出于某种原因“body”不接受 keydown 事件。希望有帮助。
Actually it works in chrome even without the "event" because event is a keyword in chrome and it is filled with the last triggered event.
The reason it doesn't work in firefox is because you should assign the event like this:
For some reason "body" does not accept the keydown event. Hope it helps.
event
可能在 JSFIDDLE 上丢失。
event
is missing perhapsOn JSFIDDLE.
好的,为什么你不使用 JavaScript
Ok Why You don't use JavaScript