插件窝 干货文章 js如何获取域名

js如何获取域名

location 使用 window strong 132    来源:    2024-10-19
可以使用 javascript 的以下方法获取域名:document.domain:返回顶级域名。window.location.hostname:返回主机名(不含端口号)。正则表达式:从 window.location.href 中提取域名。

如何使用 JavaScript 获取域名

要使用 JavaScript 获取当前页面的域名,可以使用以下方法:

1. 使用 document.domain

  • document.domain 属性返回当前页面加载的域名的顶级域名(TLD)。
  • 语法:document.domain

2. 使用 window.location.hostname

  • window.location.hostname 属性返回当前页面加载的主机名(不包括端口号)。
  • 语法:window.location.hostname

3. 使用正则表达式

你可以使用正则表达式从 window.location.href 属性中提取域名。

  • 语法:window.location.href.match(/^https?:\/\/(.*?)\//)[1]

示例:

// 使用 document.domain
console.log(document.domain); // "example.com"

// 使用 window.location.hostname
console.log(window.location.hostname); // "www.example.com"

// 使用正则表达式
console.log(window.location.href.match(/^https?:\/\/(.*?)\//)[1]); // "www.example.com"

请注意,对于子域,document.domain 返回父域,而 window.location.hostname 返回子域。