javascript 函数必须搜索网页(html 正文)中的特殊链接(版权网址)。
如果它没有找到特殊的 url,则必须发出警报。
JavaScript 文件示例:
if () {
//If function find the copyright links, then null - don't make anything
}
else
//If function doesn't find copyright links, then give an alert
alert("Please protect original copyright links.")
html页面示例:
<html>
<head>
<script type='text/javascript' src='http:// ... file.js'></script>
</head>
<body>
<!-- Start Copyrigt Area -->
<div id="footer">
<a href="http://example1.com">example1.com</a>
<a href="http://example2.com">example2.com</a>
</div>
<!-- End Copyrigt Area -->
</body>
</html>
为什么?
我为特殊的博客社区网站制作了一些主题。有时,我们的主题用户会删除或更改页脚区域中的版权链接。
博客社区网站不支持像php这样的动态内容,我们只能在一个页面中使用html和一些特殊的内容标签。
另一方面,该站点不允许JS托管等。因此,由第三方托管服务提供商提供的JS文件。
我不想加密代码。所以我认为我们使用 JavaScript 函数检查链接。如果我们的链接被删除或更改,则用户必须收到警报。
也许,一些主题用户发现这些 javascript 函数并将它们删除并重新托管代码。但我想他们中的大多数人会什么都做不了。