js替换字符串中所有斜杠

var a = "/a/b/c";
    alert(a.replace(new RegExp("/","gm"),""));

  

原文地址:https://www.cnblogs.com/littleCode/p/3428934.html