0

我正在尝试使用 EncodeURIComponent 对 & 符号进行编码并将其替换为 %26。我遇到的问题是,当我使用 DecodeURIComponent 对其进行解码时,它显示“和”。这是我的代码。任何人有任何想法我做错了什么?

if(e.keyCode == 13){
   var searchtab = getSearchParam($(this).parent().find(".search-tpe").val());
   $(this).val($(this).val().replace(/Search topic, title, author, A53/, ''));
       window.location  =  "/search/fullsite-search.html?query=" + decodeURIComponent(encodeURIComponent($(this).val().replace(/\\/g, '').replac\
e(/&/g,'%26'))) + "&" + getSearchParam($(this).parent().find(".search-type").val());
}
4

0 回答 0