标签:ace cti cap 第一个 cape turn ase replace 关于
比如把“<>”换成转义符
function escapeHtml(str){
return str.replace("/[<>]/g",function(word,idx){
//注:第一个参数为匹配的字符串,第二个参数为匹配到的索引标
switch(word){
case "<":
return "<"
case ">":
return ">"
}
})
}
以上;
标签:ace cti cap 第一个 cape turn ase replace 关于
原文地址:https://www.cnblogs.com/ladycat/p/10204631.html