2
$(".row").each(function(){
    $(this).attr('href', $(this).attr("href").replace(/\s/g,"%20"));
    });

当您单击此链接时,它会生成 %2520 而不是 %20。

...position=Administrative%2520Assistant-%2520Robotics

关于为什么会发生这种情况的任何想法?

4

1 回答 1

1

您可能对字符串进行了两次 URL 编码,因为%20URL 编码是%2520.

小提琴

于 2013-01-25T15:34:33.623 回答