Js特殊字符轉義之htmlEscape()方法

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