解码javascript中的url字符串给出空字符串

时间:2019-02-28 09:44:00

标签: javascript url decode

我有这个字符串:

http:\/\/www.emptyurl.com\/

我想将网址更改为:

http://www.emptyurl.com/

使用:

url = url.replace(/\\//gi, "/");

但是它给了我一个空字符串。

有什么主意我可以解决吗?

1 个答案:

答案 0 :(得分:0)

您可以使用decodeURIComponent()

var url = 'http:\/\/www.emptyurl.com\/';
url = decodeURIComponent(url);
console.log(url);