gpt4 book ai didi

javascript - 从 url 获取 'following' - domain.com/following#2

转载 作者:行者123 更新时间:2023-11-30 17:21:42 27 4
gpt4 key购买 nike

希望在域之后但在其他任何内容之前获取值。

因此 URL 的示例是:

www.domain.com/following#2

我只想从该 url 中获取后面的单词。

目前有这个可以重定向用户并在任何片段等之后获取数据:

// First get the page URL and split it via # and ? signs
var parts = location.href.split('#');
var queryParameters = location.search.split('?');

// Now we get the value of the page value in the URL if there is one
var pageNumber = 0;
for(var i = 0; i < queryParameters.length; i++)
{
var keyvaluePair = queryParameters[i].split('=');
if(keyvaluePair[0] == 'page')
{
pageNumber = keyvaluePair[1];
break;
}
}

// Next we check how many parts there are in the URL and if this a value, we add it to the current page
// and redirect to that new page number
if(parts.length > 1)
{
var params = parts[0].split('?');
var mark = '?';
if(params.length > 1)
{
mark = '?';
}
var newPageNumber = parseInt(parts[1], 10) + parseInt(pageNumber, 10);
location.href = mark + 'page=' + newPageNumber;
}

所以在 URL 之外,我需要更改这一行:

location.href = mark + 'page=' + newPageNumber;

location.href = following + mark + 'page=' + newPageNumber;

但我会根据我从 URL 中获取的内容使用变量而不是跟随。

谢谢。

最佳答案

你可以试试location.pathname。这样做应该返回“路径”或反斜杠后的任何内容

关于javascript - 从 url 获取 'following' - domain.com/following#2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25047373/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com