如何通过JavaScript获取域名?

发布于 2024-07-26 00:26:45 字数 52 浏览 4 评论 0原文

有没有办法在浏览器(IE、FireFox等)中使用javascript获取当前页面的域名?

Is there a way to obtain the domain name of the current page by using javascript in a browser (IE, FireFox, etc) ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

暗藏城府 2024-08-02 00:26:45

如果您询问提供当前页面的主机的计算机名称,您可以发现

window.location.hostname

如果您询问在浏览器中显示该页面的计算机的名称,则出于安全考虑,该信息受到浏览器的限制目的。

If you are asking about the machine name of the host that served up the current page, you can find that with

window.location.hostname

If you are asking about the name of the machine that is displaying the page in a browser, that information is restricted by browsers for security purposes.

熊抱啵儿 2024-08-02 00:26:45

您可以使用document.domain来获取域名。

You can use document.domain to get domain name.

雨落星ぅ辰 2024-08-02 00:26:45

window.location.host

编辑:如果您指的是客户端计算机的域,我认为这是不可能的。

window.location.host

EDIT: If you meant the domain of the client machine, I don't think it is possible.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文