如何显示使用JavaScript加载文档的服务器的域名?

要显示服务器的域名,请在JavaScript中使用domain属性。

示例

您可以尝试运行以下代码以显示加载文档的服务器的域名-

<!DOCTYPE html>
<html>
   <body>
      <script>
         var myDomain = document.domain;
         document.write("<br>Domain name of the server that loaded the document: "+myDomain);
      </script>
   </body>
</html>