我想替换" /"进入" \ /"使用javascript。
例如:
http://www.freeformatter.com/javascript-escape.html
到
http:\/\/www.freeformatter.com\/javascript-escape.html
答案 0 :(得分:2)
答案 1 :(得分:1)
使用替换:
"http:/www.freeformatter.com/javascript-escape.html".replace(/\//g, "\\/");
如果变量中包含字符串:
var url = "http:/www.freeformatter.com/javascript-escape.html";
url.replace(/\//g, "\\/");
答案 2 :(得分:0)
您可以在此处使用str.replace()和Regular表达式对象。基本上你只需要在替换字符串中转义转义字符。
str = str.replace(new RegExp('/','g'),"\\/");