js的replaceAll()
当前位置:点晴教程→知识管理交流
→『 技术文档交流 』
js中没有java中的replaceall()函数,为了达到与java的replaceall()一样的效果,我们可以用如下代码实现: string.prototype.replaceall = function(s1,s2) { return this.replace(new regexp(s1,"gm"),s2); }
调用方式: 如想替换字符串"aa bb cc"中的所有空格,可以执行"aa bb cc".replaceall(" ", "");
$("paragraph. ").replaceall("p"); 该文章在 2011/3/29 9:26:06 编辑过 |
关键字查询
相关文章
正在查询... |