与TLD

时间:2016-01-15 17:04:08

标签: html

有没有办法用纯HTML链接到顶级域名(TLD)?

<a href="{magic}/">Go to TLD</a>

想象一下我在http://subdomain.example.com/subfolder。 现在我只需要跳转到根文件夹就可以使用/作为href属性 - 很好。

但是如果我想跳转到http://example.com而不是http://subdomain.example.com怎么办?

甚至更好:

http://subdomain.example.com/subfolderhttp://example.com/subfolder(相同的子文件夹)?

当然,我可以在JavaScript中这样做:

&#13;
&#13;
var urlParts = location.hostname.split('.');
var tld = urlParts.slice(-2).join('.');

var a = document.createElement('a');
a.href = '//' + tld;
a.innerHTML = "Go to TLD";

var a2 = document.createElement('a');
a2.href = '//' + tld + window.location.pathname;
a2.innerHTML = "Go to same folder on TLD";

document.body.appendChild(a);
document.body.appendChild(a2);
&#13;
&#13;
&#13;

但是还有其他方法吗?

1 个答案:

答案 0 :(得分:1)

截至目前,如果不解析URL并输出它,这是不可能的。没有类似../(上一个文件夹)的标准,允许&#34;跳起来&#34;一个域级别。对于不同的基于JS的解决方案,您可以采用更简单的正则表达式方法,但检查是否可以上升到某个级别可能会很棘手(例如。example.co.uk会转变为co.uk)。尽管如此,这是正则表达式的方法:

&#13;
&#13;
var hostname = 'test.example.com'; //location.hostname
var tld = hostname.replace(/^.*\.([^.]+\.[^.]+)$/,'$1');
document.write(tld);
&#13;
&#13;
&#13;