gpt4 book ai didi

javascript - 在 jQuery 中绑定(bind) ctrl + u 击键

转载 作者:行者123 更新时间:2023-11-30 10:37:01 24 4
gpt4 key购买 nike

我正尝试在 jQuery 的网络应用程序中构建一个热键。我正在尝试绑定(bind) Ctrl+U 击键。这是我所拥有的:

$(document).keypress(function(e) {
if(e.ctrlKey && e.which == 117) {
if($("#nav-user-details").length > 0) {
$("#nav-user-details").find(".dropdown-menu").toggle();
}
}
});

虽然这不起作用。如何绑定(bind)这个按键?

谢谢。

最佳答案

请试试这个 http://jsfiddle.net/TN7GZ/

Ctrl+U 屏幕会提示。

这将满足您的需求:)

代码

var isCtrl = false;
document.onkeyup=function(e){
if(e.which == 17) isCtrl=false;
}
document.onkeydown=function(e){
if(e.which == 17) isCtrl=true;
if(e.which == 85 && isCtrl == true) {
//run code for CTRL+U -- ie, whatever!
alert('CTRL + U stuff');
return false;
}
}

关于javascript - 在 jQuery 中绑定(bind) ctrl + u 击键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13394189/

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