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.
我必须全部禁用网站链接。如果我在网站上放置了任何覆盖,但这不是正确的解决方案,因为我们可以使用萤火虫或任何浏览器工具删除该覆盖......那么有没有可能在不采取任何行动的情况下冻结网站......
谢谢, 穆拉利
如果您使用 jquery,您可以禁用链接操作,如下所示
$(document).ready(function(e) { $('a').click(function(e){ e.preventDefault(); }); });
基本上 e.preventDefault会拦截默认动作
e.preventDefault