how to hide my source code so to not be copied(如何隐藏我的源代码以免被复制)
问题描述
最近有人告诉我,我的网站被复制了.当我查看他给我的链接时,除了徽标和文字外,该网站与我的网站相同.有没有办法隐藏我的代码?或者使无法右键单击我的页面?我在一些网站上看到,如果您访问 http://example.com/images/,它将显示访问权限拒绝,而不是包含所有图像的列表...他们是如何做到的?谢谢!
I was recently informed by someone that my website was copied. When I looked at the linked that he gave me I so that the site was identic to mine except for the logo and text. Is there a way to hide my code? Or to make it impossible to right click on my page? I saw on some websites that if you go to http://example.com/images/ it will show access denied, not a list with all your images...How do they do it? Thank you!
推荐答案
不要这样做!这样做没有意义,因为用户可以禁用脚本,并且有许多工具,例如 Firebug,用户可以通过这些工具查看代码.
Don't do this! It makes no sense to do this, since the user can disable the script, and there are many tools like Firebug by which a user can see the code.
确保商店安全的最佳方法是在门打开的情况下安装安全摄像头.
The best way to keep safe the store is installing a security camera while leaving the doors open.
您可以通过以下方式简单地禁用右键单击:
You can simply disable the right click by following:
<body oncontextmenu="return false">
...
</body>
或
<script language="javascript">
document.onmousedown = disableclick;
status = "Right Click Disabled";
Function disableclick(e)
{
if(event.button == 2)
{
alert(status);
return false;
}
}
</script>
以上代码来自这篇文章
这篇关于如何隐藏我的源代码以免被复制的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何隐藏我的源代码以免被复制
基础教程推荐
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 直接将值设置为滑块 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01