WEB开发网
开发学院网页设计JavaScript javascript replace 阅读

javascript replace

 2010-09-14 13:05:51 来源:WEB开发网   
核心提示:str="/"+obj.value+"/g";alert(str);string=string.replace(str,'');window.document.all.Cag.value=string;那里错了 为什么不能将 str 中 obj.value 的变量

str="/"+obj.value+"/g";
alert(str);
string=string.replace(str,'');
window.document.all.Cag.value=string;

那里错了 为什么不能将 str 中 obj.value 的变量的内容替换为空?

str是字符串"/abc/g"(假如obj.value = "abc"),而不是正则表达式/abc/g

可以直接这样写而不用正则表达式:string = string.replace(obj.value,"")

Tags:javascript replace

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接