gpt4 book ai didi

jquery - oncontextmenu 不会阻止我右键单击时出现浏览器的上下文菜单

转载 作者:行者123 更新时间:2023-12-01 04:12:38 25 4
gpt4 key购买 nike

我有以下简短代码

<body oncontextmenu="return false">
<p class="info">
Books are the world of information. As said the books are the best friends. A wise
man always has a library of several books</p>
<ul id="contextmenu">
........

JS:

$('.info').mousedown(function (event) {
if (event.button == 2) {
$('#contextmenu').show();
}
}

当我右键单击 .info 时,我希望浏览器的上下文菜单不会与我们的上下文菜单一起默认显示。

oncontextmenu="return false"

不起作用

最佳答案

将此 javascript 放入您的 head 标签中

    <script>
document.oncontextmenu = function(e){
return false;
}
</script>

以下内容也适合我

<html oncontextmenu="return false">

关于jquery - oncontextmenu 不会阻止我右键单击时出现浏览器的上下文菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18569932/

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