Javascript - Replace '%20' spaces
var loc_array = document.l开发者_Python百科ocation.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?
Why not just do
unescape(document.location.href);
精彩评论