gpt4 book ai didi

javascript - 当我尝试单击 Shift + Tab 组合时,会触发 Shift 键

转载 作者:行者123 更新时间:2023-11-28 04:35:22 27 4
gpt4 key购买 nike

当我尝试单击 shift + tab 组合时,

Shiftkey 被触发

$("#buttonZZ").on("keydown",function (eve) {
if (eve.keyCode == 9 && eve.shiftKey) {
eve.preventDefault();
$("#cancelbtn").focus();
}
if (eve.keyCode == 9) {
eve.preventDefault();
$("#feedback_1").focus();
}
});

最佳答案

请尝试下面的代码,它可能会解决您的问题。

$("#buttonZZ").on("keydown",function (eve) {
if(eve.keyCode == 9) {
if(eve.shiftKey) {
//Focus previous input
}
else {
//Focus next input
}
}
});

关于javascript - 当我尝试单击 Shift + Tab 组合时,会触发 Shift 键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44261457/

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