gpt4 book ai didi

javascript - 按键 Action

转载 作者:数据小太阳 更新时间:2023-10-29 05:53:10 28 4
gpt4 key购买 nike

我正在设计一个基于网络的会计软件。例如,每当用户按 N 键时,我想打开“新会计凭证”。并在他/她按下 S 键时打开“设置”。

我看到了一些基于 JavaScript 和 jQuery 的脚本。但它们并没有完全起作用。谁能帮助我吗?

我试过这个脚本:

var code = (e.keyCode ? e.keyCode : e.which);
if(code == 13) { //Enter keycode
//Do something
}

最佳答案

$(document).bind('keyup', function(e){
if(e.which==78) {
// "n"
}
if(e.which==83) {
// "s"
}
});

为了防止输入聚焦:

$("body").on("focus",":input", function(){ $(document).unbind('keyup'); });
$("body").on("blur",":input", function(){ $(document).bind('keyup', function(e){ etc.... });

您可能希望将 bind 函数放入它自己的函数中,这样您就不会重复代码。例如:

function bindKeyup(){
$(document).bind('keyup', function(e){
if(e.which==78) {
// "n"
}
if(e.which==83) {
// "s"
}
});
}
$("body").on("focus",":input", function(){ $(document).unbind('keyup'); });
$("body").on("blur",":input", function(){ bindKeyup(); });

关于javascript - 按键 Action ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8294876/

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