-
js调换字符串的所有示例代码
添加时间:2013-7-25 点击量:js如何调换字符串中所有。
/
调换字符串中所有
@param obj 原字符串
@param str1 调换规矩
@param str2 调换成什么
@return 调换后的字符串
/
function replaceAll(obj,str1,str2){
var result = obj.replace(eval(/+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> js调换字符串的例子-www.jbxue.com-脚本书院 </title>
<meta name=Generator content=EditPlus>
<meta name=Author content=>
<meta name=Keywords content=>
<meta name=Description content=>
<script type=text/javascript>
function replaceAll(obj,str1,str2){
var result = obj.replace(eval(/+str1+/gi),str2);
return result;
}
alert(replaceAll(111,222,333,,,|));
</script>
</head>
<body>
</body>
</html>