如果网络服务器有一个主机名和一个不同的 DNS 别名,那么 document.domain 的值是多少?
我有一个具有以下主机名和 DNS 别名的网络服务器。
Host name - server1.aa.xx.company.com
Alias name - server1.bb.xx.company.com
在上面的场景中,JavaScript DOM 对象 document.domain 的值是多少?是 server1.aa.xx.company.com 还是 server1.bb.xx.company.com?
I have a webserver with the following host name and DNS alias name.
Host name - server1.aa.xx.company.com
Alias name - server1.bb.xx.company.com
In the above scenario, what will be the value of JavaScript DOM object document.domain? Will it be server1.aa.xx.company.com or will it be server1.bb.xx.company.com?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这将是浏览器中请求页面的域。 Javascript 对 DNS 别名不感兴趣,只对浏览器地址栏中的内容感兴趣。
It will be the domain the page was requested in the browser on. Javascript isn't interested in DNS aliases - just in what it says in the browser's address bar.