如果<div id =“credits”>从HTML文档中删除然后重定向到新网页</div>

时间:2013-09-25 11:47:24

标签: javascript jquery html

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

例如:

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

如果有人将其删除,则用户将自动重定向到我的网站。

这是为了保护版权。

3 个答案:

答案 0 :(得分:2)

如果我理解你担心有人会将你的网页复制到他们的网站上,那么你可以试试这个,尽管这样做真的很荒谬:

<script type="text/javascript">
if($('#credits').length == 0)
     window.location = 'http://www.url.com'
</script>

答案 1 :(得分: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";
}

答案 2 :(得分:0)

试试这个:

<script type="text/javascript">
   $(document).ready(function(){
       if($("#your-div-id").length == 0) {
           window.location.href = "your-url";
       }
   });
</script>