网址示例:
http://www.demotest.com/categoey/t23
http://demotest.com/categoey/t23
http://www.demotest.net/categoey/c24
我只想从上面的网址中使用“ demotest ”部分(使用jquery和JavaScript)
使用 window.location.hostname 我获得了完整路径 www.demotest.com ,但我只想要 demotest 部分
答案 0 :(得分:2)
您可以使用此正则表达式:
\.([^.]+)\.[^.]+$
或者你可以拆分:
var domain = window.location.hostname.split('.');
console.log(domain[domain.length - 2]);
答案 1 :(得分:0)
尝试使用split,
urlParts = window.location.hostname.split('.');
urlParts[urlParts.length-1]
答案 2 :(得分:0)
尝试window.location.hostname.split('.')[0]
答案 3 :(得分:0)
将其拆分为“。”像这样:
var str = "www.demotest.com"
var arrStr = str.split(".");
然后你想要的是索引1 - arrStr[1]
这是jsFiddle - http://jsfiddle.net/N0ir/yLtCW/