Skip to content

Instantly share code, notes, and snippets.

@hacke2
Created August 25, 2014 13:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hacke2/d02e5c607a2a2382a6bd to your computer and use it in GitHub Desktop.
Save hacke2/d02e5c607a2a2382a6bd to your computer and use it in GitHub Desktop.
处理一些文本里的HTML标签
function htmlEscape(text) {
return text.replace(/[<>"&]/g, function(match, pos, originalText){
switch(match) {
case "<" : return "&lt;";
case ">" : return "&gt;";
case "\"" : return "&amp;";
case "&" : return "&quot;";
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment