-4

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 函数并将它们删除并重新托管代码。但我想他们中的大多数人会什么都做不了。

4

1 回答 1

0

这取决于您如何编写html。假设页脚元素始终存在:

if (document.getElementById('footer').childNodes.length == 0) {

//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.")

但请记住,这只是计算你放在那里的东西。

如果您没有放入版权,而您的页脚不存在,请查看 peehaa 的评论。

但是,应该注意的是,您似乎只是在引用版权区域中的链接。就像说 - 我知道这项措施对安全没有任何作用,但如果您关心,这里有指向权利所有者的链接。如果这是真的,那就太好了。干得好。如果您确实需要安全措施来保护页面上的内容,这不会保护任何东西。

于 2012-11-27T21:57:10.877 回答