// malformed string
var str = "C:\Windows\Fonts";
// C:WindowsFonts
alert(str.replace(/\\/g, "/"));
如何正确替换\
,/
以便我可以得到C:/Windows/Fonts
?
// malformed string
var str = "C:\Windows\Fonts";
// C:WindowsFonts
alert(str.replace(/\\/g, "/"));
如何正确替换\
,/
以便我可以得到C:/Windows/Fonts
?