Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$(".row").each(function(){ $(this).attr('href', $(this).attr("href").replace(/\s/g,"%20")); });
このリンクをクリックすると、%20ではなく%2520で生成されます。
...position=Administrative%2520Assistant-%2520Robotics
なぜこれが起こっているのかについて何か考えはありますか?
あなたはおそらく文字列を2回URLエンコードしているでしょう。URLエンコード%20されているのはです%2520。
%20
%2520
フィドル