gpt4 book ai didi

javascript - 从 get 方法中删除 %20 值

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:52:04 24 4
gpt4 key购买 nike

在 get 方法中删除 %20?

var c=new Array(a);    
(eg: a={"1","2"}) window.location="my_details.html?"+ c + "_";

在 my_details.html 中:

var q=window.location.search;    
alert("qqqqqqqqqqqqq " + q);
var arrayList = (q)? q.substring(1).split("_"):[];
var list=new Array(arrayList);
alert("dataaaaaaaaaaaa " + list + "llll " );

在“列表”中它欺骗了我“1%202”

如何删除此 %20 =space 值??

谢谢

最佳答案

只需使用这个:

alert("dataaaaaaaaaaaa " +  decodeURIComponent(list)  + "llll " );

这应该将 %20 解码为 space

看这里:http://www.w3schools.com/jsref/jsref_decodeURIComponent.asp

关于javascript - 从 get 方法中删除 %20 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8558771/

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