`

JavaScript实现ReplaceAll 方法

阅读更多
JavaScript String Replace All The JavaScript function for String Replace replaces the first occurrence in the string. The function is similar to the php function str_replace and takes two simple parameters. The first parameter is the pattern to find and the second parameter is the string to replace the pattern with when found. The javascript function does not Replace All... str = str.replace(”find”,”replace”) To ReplaceAll you have to do it a little differently. To replace all occurrences in the string, use the g modifier like this: str = str.replace(/find/g,”replace”)
分享到:
评论
1 楼 ling凌yue月 2013-11-10  
  Yes,it's good!

相关推荐

Global site tag (gtag.js) - Google Analytics