Skip to content

Instantly share code, notes, and snippets.

@hustcc
Created May 11, 2016 04:53
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 hustcc/b80b59a95665188fff4c1066eb9d350a to your computer and use it in GitHub Desktop.
Save hustcc/b80b59a95665188fff4c1066eb9d350a to your computer and use it in GitHub Desktop.
javascript 转义
function htmlEntities(str) {
return String(str)
.replace(/&/g, '&')
.replace(/</g, '&lt;')
.replace(/>/g, '&gt;')
.replace(/"/g, '&quot;');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment