是否有检测站点域更改的功能?

Is there any function to detect site domain changed?

如果我的 javascript 代码 被复制到另一个站点,我想显示一个 alert 框。

是否有任何功能可以检测域是否更改并在未检测到原始域时显示警告消息框?

尝试这个希望它会有所帮助

  <script>

     var ref = document.referrer
     if(ref !== "https://yourdomain.com"){
           alert(ref);
      }

    // or you can do this

     var host = window.location.hostname
     if(host !== "yourdomain.com"){
           alert(host);
      }

  </script>