标签: javascript
这是我的字符串:
myStr = "this/is/foo/bar"
我希望它是
myStr = "thisisfoobar"
但是这次尝试只删除了第一个/
myStr.replace("/", "");
如何让它取代所有这些?