gpt4 book ai didi

javascript - 使用 jquery 重新映射键盘

转载 作者:行者123 更新时间:2023-12-01 02:36:19 25 4
gpt4 key购买 nike

我正在尝试编写一个 jquery 脚本来重新映射键盘按键。例如,如果我按上箭头键,键盘必须发送“a”键。我使用 AutoHotKey 来做这样的事情,但我想看看是否可以用 jquery 做同样的事情。

var myEvent = jQuery.Event("keydown");

myEvent.which = 65; //keycode for 'a'

$(document).keydown(function(e){

if ( e.which === 38 ) {
$(e.target).trigger(myEvent);
e.preventDefault();
}

});

不幸的是,不起作用:(

有什么建议吗?谢谢。

最佳答案

var myEvent = jQuery.Event("keydown");

myEvent.which = 65; //keycode for 'a'

$(document).keydown(function(e){
if ( e.which === 38 ) {
$(e.target).trigger(myEvent);
e.preventDefault();
}
if ( e.which === 65 ) {
// You can call your custom function here
console.log('a press');
}

});

关于javascript - 使用 jquery 重新映射键盘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47884676/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com