<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body>
<input id="text1" name="text1" value="D:/MyDesktop/ruby/baby/ok">
</body>
<script language="javascript">
var str=document.getElementById("text1").value;
alert(str);
str=str.replace(////g,'////');
alert(str);
</script>
</html>
以上实例源代码,这里有有两处关键点
:
1。replace 替换全部匹配字符 replace(s1,s2),默认情况下,替换第一处匹配的字符,要是替换全部则 用模式中的子表达式 例:/模式子表达式/g ,这里的g就可以替换多处。
2.将“/” 替换为:“//” 其实表示"/"很简单关键是,表示"//",javascript中特殊字符是要进行转义的所以"/" -对应-"//" ,"//" -对应- “////”, --转自
该贴由koei123转至本版2015-6-1 14:45:23