在url中查找字符串位置并替换url

时间:2016-07-07 15:45:38

标签: javascript html html5

所以,让我说我现在正在:

http://example.com/page/1/foo/something/here

所以我需要做的是搜索特定字符串的window.location.href,在本例中为“foo”,我需要在字符串foo之前输入url,所以在这种情况下将是

http://example.com/page/1/

我怎样才能做到这一点?

1 个答案:

答案 0 :(得分:5)

有很多方法。这是最短的:

'http://example.com/page/1/foo/something/here'.split('foo')[0]