gpt4 book ai didi

javascript - js,如何获取location.hash中的一部分

转载 作者:行者123 更新时间:2023-11-28 16:27:58 25 4
gpt4 key购买 nike

我想获取location.hash部分,即第一个%20之后的单词。但如何呢?

解释一下

http://localhost/text/search.php?search=sweet%20girl  => girl
http://localhost/text/search.php?search=fashion => NULL
http://localhost/text/search.php?search=2011%20best%20and%20worst => best and worst

最佳答案

var s = decodeURIComponent(location.search);
var index = s.indexOf(" ");
s = index === -1 ? s.substr(index + 1) : null;

关于javascript - js,如何获取location.hash中的一部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7305772/

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