我计划为同一个网站购买两个域名。根据所使用的域,我计划在页面上提供稍微不同的数据。是否有一种方法可以让我检测页面正在加载的实际域名,以便我知道要将我的内容更改为什么?
我到处找过这样的东西,但大多数都不是我想要的方式。
例如,当使用
document.write(document.location)
在JSFiddle上返回
http://fiddle.jshell.net/_display/
也就是实际的路径。
我计划为同一个网站购买两个域名。根据所使用的域,我计划在页面上提供稍微不同的数据。是否有一种方法可以让我检测页面正在加载的实际域名,以便我知道要将我的内容更改为什么?
我到处找过这样的东西,但大多数都不是我想要的方式。
例如,当使用
document.write(document.location)
在JSFiddle上返回
http://fiddle.jshell.net/_display/
也就是实际的路径。
当前回答
你可以很容易地从Javascript中的location object中获得它:
例如,这个页面的URL是:
http://www.stackoverflow.com/questions/11401897/get-the-current-domain-name-with-javascript-not-the-path-etc
然后我们可以通过location对象的以下属性获得准确的域:
location.host = "www.stackoverflow.com"
location.protocol= "http:"
您可以使用以下方法创建完整的域:
location.protocol + "//" + location.host
在这个例子中,哪个返回http://www.stackoverflow.com
我添加这个,我们可以得到完整的URL和路径与location对象的其他属性:
location.href= "http://www.stackoverflow.com/questions/11401897/get-the-current-domain-name-with-javascript-not-the-path-etc"
location.pathname= "questions/11401897/get-the-current-domain-name-with-javascript-not-the-path-etc"
其他回答
我是JavaScript的新手,但你不能只使用:文档。域?
例子:
<p id="ourdomain"></p>
<script>
var domainstring = document.domain;
document.getElementById("ourdomain").innerHTML = (domainstring);
</script>
输出:
domain.com
or
www.domain.com
这取决于你在你的网站上使用什么。
这个函数呢?
window.location.hostname.match(/\w*\.\w*$/gi)[0]
这将只匹配域名,不管它是子域还是主域
如何:
window.location.hostname
location对象实际上有许多指向URL不同部分的属性
您可以使用它来删除端口号。
var 主机名 = 窗口.位置.主机; var urlWithoutPort = 'https://${hostname}'; console.log(urlWithoutPort);
如果你想要一个完整的域原点,你可以使用这个:
document.location.origin
如果你只希望得到域名,使用can you just this:
document.location.hostname
但你有其他的选择,看看属性在:
document.location