gpt4 book ai didi

javascript - 在我的代码中检测到 Control + D 也会触发在 Chrome 中添加书签键盘快捷键,有什么办法可以防止这种情况发生吗?

转载 作者:行者123 更新时间:2023-11-29 21:01:46 25 4
gpt4 key购买 nike

有没有办法禁止浏览器的键盘快捷键关闭?谷歌浏览器键盘快捷键出现在我的代码之后。我只是不想让它熄灭。

handleKeyDown( e ) {
if ( e.ctrlKey && e.keyCode === 68 ) { // ctrl + d
// this works, BUT it also triggers Google Chrome's bookmark shortcut
}

最佳答案

您应该阻止事件的默认操作,如下所示:

function handleKeyDown( e ) {
if ( e.ctrlKey && e.keyCode === 68 ) { // ctrl + d
// this works, BUT it also triggers Google Chrome's bookmark shortcut
console.log('Ctrl+D');
}
e.preventDefault();
}

https://jsfiddle.net/a5wbd3o9/

关于javascript - 在我的代码中检测到 Control + D 也会触发在 Chrome 中添加书签键盘快捷键,有什么办法可以防止这种情况发生吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46106766/

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