禁用 Visualforce 中链接的右键单击

发布于 2024-11-08 10:59:38 字数 104 浏览 0 评论 0原文

如何禁用 Visualforce 中链接的右键单击?我使用选择查询来调用对象中的字段,其中它是查找。所以我提供了 onclick ="return false" 但仍然可以通过右键单击打开链接。

How to disable right click on a link in visualforce? I am calling the field in a object using select query where it is a lookup. So I provided onclick ="return false" but the link can still be opened with a right click.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

筱果果 2024-11-15 10:59:38

您是否尝试

<body oncontextmenu="return false;">

过将其与当前代码一起使用?尽管有人可以在浏览器栏中使用

javascript:void oncontextmenu(null)

或仅通过查看页面源来撤消它。我想 99% 的用户都不会经历这些困难。

它还应该禁用整个页面的右键单击,这可能是不可取的。

保罗

Have you tried

<body oncontextmenu="return false;">

for this alongside your current code? Although it could be undone by someone in the browser bar using

javascript:void oncontextmenu(null)

or by just viewing the source of the page. I would imagine that 99% of users won't go through those hoops though.

It should also disable right click through the entire page which may be undesirable.

Paul

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文