Javascript - Replace ' ' spaces

2019-02-26 20:45发布

问题:

var loc_array = document.location.href.split('/');
var linkElement = document.getElementById("waBackButton");
var newT = document.createTextNode(loc_array[loc_array.length-2]); 
var repl = newT.replace('%20',' ');
linkElement.appendChild(repl);

Anyone know why this causes the text to not show up?

回答1:

Why not just do

unescape(document.location.href);