一般replace的方法
str = str.replace(”find”,”replace”);
改為replaceAll的方法
str = str.replace(/find/g,”replace”);
我遇到的問題是將檔案路徑的'\'改為'/'做法如下
一般replace的方法
filepath = filepath.replace("\\","/")
改為replace的方法
filepath = filepath.replace(/\\/g,"/");
此方法在xul中也可以使用
全站熱搜
留言列表