如何通过JavaScript获取域名?
有没有办法在浏览器(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您询问提供当前页面的主机的计算机名称,您可以发现
如果您询问在浏览器中显示该页面的计算机的名称,则出于安全考虑,该信息受到浏览器的限制目的。
If you are asking about the machine name of the host that served up the current page, you can find that with
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.
您可以使用
document.domain
来获取域名。You can use
document.domain
to get domain name.window.location.host
编辑:如果您指的是客户端计算机的域,我认为这是不可能的。
window.location.host
EDIT: If you meant the domain of the client machine, I don't think it is possible.