使用jquery彻底剥离URL

发布于 2024-12-18 12:30:21 字数 534 浏览 2 评论 0原文

这可能非常简单。但我无法找出稳定的解决方案。

例如:
http://site1.com/promotion

我想删除我的网址,这样我只得到“site1”部分的网址。

我尝试过:

var url = window.location.href.split('http://')[1];
var stripOne = url.split('/')[0];
var stripTwo = stripOne.split('.')[0];

但是根据 url 是否包含 www,结果不一致。或不。

更新了正确答案

var url = window.location.href;
url = url.replace(/http:\/\/(www.)?/,'');
var stripOne = url.split('.')[0];

This might be pretty straight forward. But i can't figure out a stable solution.

For example:
http://site1.com/promotion

I want to strip my url so i only get the "site1"-part of the URL.

I tried with:

var url = window.location.href.split('http://')[1];
var stripOne = url.split('/')[0];
var stripTwo = stripOne.split('.')[0];

But that comes out inconsistent depending on whether or not the url contains www. or not.

UPDATED WITH CORRECT ANSWER

var url = window.location.href;
url = url.replace(/http:\/\/(www.)?/,'');
var stripOne = url.split('.')[0];

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

骑趴 2024-12-25 12:30:21

您可以使用替换来删除“http://”和“www”。 (如果存在)。不过,您仍然可能会与 https URL 发生冲突 -

url = url.replace(/http:\/\/(www.)?/,'');
var stripTwo = url.split('.')[0];

演示 - http://jsfiddle.net/Ux9jx/

You could use a replace that will strip out 'http://' and 'www.' (if it exists). You could still fall foul of https URLs with this though -

url = url.replace(/http:\/\/(www.)?/,'');
var stripTwo = url.split('.')[0];

Demo - http://jsfiddle.net/Ux9jx/

半仙 2024-12-25 12:30:21

我认为

location.host.replace('www.','').split('.')[0]

可行吗?

I think

location.host.replace('www.','').split('.')[0]

would work?

甜宝宝 2024-12-25 12:30:21

考虑使用正则表达式。检查这个

Consider using Regular Expressions . Check this out.

情深已缘浅 2024-12-25 12:30:21
window.location.host.split("\.")[0]
window.location.host.split("\.")[0]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文