Js特殊字符转义之htmlEscape()方法

function htmlEscape(text){ 
  return text.replace(/[<>"&]/g, function(match, pos, originalText){
    switch(match){
    case "<": return "<"; 
    case ">":return ">";
    case "&":return "&"; 
    case "\"":return """; 
  } 
  }); 
}
相关文章
相关标签/搜索