发布网友 发布时间:2022-04-24 04:54
共1个回答
热心网友 时间:2022-04-23 07:35
//为String类添加一个replaceAll方法。当调用String对象的replaceAll方法时执行strReplace函数。
String.prototype.replaceAll=strReplace;
//定义strReplace函数
function strReplace(findText,replaceText) {
//获取String对象的引用
var str=new String(this);
//循环在str 中查找findText ,直到查找不到findText 。
while(str.indexOf(findText)!=-1){
//每次查找到以后用replaceText替换findText
str=str.replace(findText,replaceText);
}
//返回替换以后的str。
return str;
}