-2

如果从 HTML 文档中删除特定<div id='credits'>内容,我希望用户使用 JavaScript 将其重定向到新网页。

例如:

<div id="credits"></div>

如果有人删除它,那么用户将被自动重定向到我的网站。

这是为了保护版权。

4

3 回答 3

2

如果我知道您担心有人将您的页面复制到他们的网站上,您可以试试这个,尽管它确实很容易绕过:

<script type="text/javascript">
if($('#credits').length == 0)
     window.location = 'http://www.url.com'
</script>
于 2013-09-25T11:50:18.000 回答
0

在您的页面加载事件中,您可以检查如下:

$(document).ready(function(){
  var yourDiv=document.getElementById("credits");
  if(yourDiv===null || yourDiv===undefined)
     window.location="http://www.google.com";
});

或者

window.onload=function(){
  var yourDiv=document.getElementById("credits");
      if(yourDiv===null || yourDiv===undefined)
         window.location="http://www.google.com";
}
于 2013-09-25T11:53:33.673 回答
0

尝试这个:

<script type="text/javascript">
   $(document).ready(function(){
       if($("#your-div-id").length == 0) {
           window.location.href = "your-url";
       }
   });
</script>
于 2013-09-25T11:55:15.790 回答