jsreplace,replace drum什么意思
http://www.itjxue.com 2023-01-07 01:06 来源:未知 点击次数:
Js中 replace()这个函数具体是什么用
就是把字符串中的指定字符(串)替换为另一个字符(串)。
比如:
"123-456-789".replace("-","+") //把-号全部替换为+号
结果是 "123+456+789"
如何用js代码实现replace函数
String.replaceall=function (oldstr,newstr){ var oldlength =this.length; var ret =this.replace(oldstr,newstr); if(ret.lengtholdlength) return ret.replaceall(oldstr,newstr); returnt ret; } 使用方法: var teststr ="asdfasdfasdfasdfasdfasdfasdfasdfasdf"; alert(teststr.replaceall("as","df"));
js replace全部替换的问题
比较常用的替换所有指定文字的js代码
script language="javascript"
//替换所有要替换的文字
String.prototype.replaceAll = function (str1,str2){
var str = this;
var result = str.replace(eval("/"+str1+"/gi"),str2);
return result;
}
var str = "php123phpabc";
//以'---'替换所有的'php'文字
var newStr = str.replaceAll('php','---');
alert(newStr);
/script
希望对你有所帮助~~