gpt4 book ai didi

javascript - 按下 ctrl+u 时阻止打开源 View

转载 作者:行者123 更新时间:2023-12-03 11:00:15 24 4
gpt4 key购买 nike

我正在尝试找到一种方法,当有人使用 javascript/jquery 按 ctrl+u 时阻止源 View 打开。这样做的原因是我正在制作某种简单的文本编辑器,并且我制作它以便 ctrl+u 插入下划线标签。我得到了这个工作,除了它还打开了源代码 View ,这是我不想要的。

注意:

I'm not trying to block users from viewing my source code alltogether. I've seen questions such as this one being shot down forreasons such as "people will be able to view your code anyway andthere's nothing that can be done about it, it's pointless". That isnot what I'm trying to accomplish here.

最佳答案

要覆盖浏览器的 native 键盘快捷键,请使用 Event.preventDefault() 方法,该方法将告诉浏览器不要像通常那样处理键盘事件。

$(document).keydown(function (e) {
if (e.keyCode === 85 && e.ctrlKey) {
e.preventDefault();
// ... your handling here ...
}
});

关于javascript - 按下 ctrl+u 时阻止打开源 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28129856/

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