Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
<p:overlayPanel showEvent="contextmenu" ..>
我喜欢在右键单击时显示叠加层。浏览器还显示其上下文菜单。有没有办法阻止浏览器显示其上下文菜单?
谢谢。
您可以编写一个 javaScript 函数来禁用浏览器 contextMenu。像这样的东西
<script type="text/javascript"> document.oncontextmenu=function(){return false}; </script>
供您参考,如果用户禁用 JavaScript,此技术将失败。