js替换字符串的所有示例代码

复制代码 代码如下:


/**
* 替换字符串中所有
* @param obj 原字符串
* @param str1 替换规则
* @param str2 替换成什么
* @return 替换后的字符串
*/
function replaceAll(obj,str1,str2){
var result = obj.replace(eval("https://www.jb51.net/"+str1+"/gi"),str2);
return result;
}


例如:

复制代码 代码如下:


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title> New Document </title>
<meta content="EditPlus">
<meta content="">
<meta content="">
<meta content="">
<script type="text/javascript">
function replaceAll(obj,str1,str2){
var result = obj.replace(eval("https://www.jb51.net/"+str1+"/gi"),str2);
return result;
}
alert(replaceAll("111,222,333",",","|"));
</script>
</head>
<body>
</body>
</html>

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wdgyxy.html