我有一个url像http://abc.xyz.com
。我只想要'http://abc'
部分,但我得到了'http://abc.xyz.com'
我试过了:
windw.location.origin
我是否需要编写一些额外的方法来获取url的第一部分,或者是否有任何window
方法可以做同样的事情?
可以按.
分割,取第一个元素
window.location.origin.split('.')[0]
的例子:
console.log(window.location.origin);
console.log(window.location.origin.split('.')[0]);
"http://abc.xyz.com".split(".")[0]
// or
var url = "http://abc.xyz.com";
url.split(".")[0]
返回"http://abc">
就这么简单:[subdomain] = 'https://abc.def.xyz'.split('.');
var url = 'https://abc.def.xyz';
[subdomain] = url.split('.');
console.log(subdomain);