js 相似 java 的replaceAll方法 所有替換javascript
var str="abcdadfdfdfdfdfsldfds"; alert(str); str=str.replace(new RegExp('d',"gm"),"D"); alert(str);