E:\\museic\\mmo\\
我是做的一个AJAX上传图片的效果,现在这个地址传过去是这种的,用Js中的replace怎么替换掉\?
\符号需要转义
可以这么写
replace(/\\/g, "\\");
将双斜杠\\替换成单斜杠\\