Skip to content

Instantly share code, notes, and snippets.

@Houserqu
Created July 14, 2022 03:16
Show Gist options
  • Save Houserqu/6aede0ac09e913f2bf96d232b79e9a57 to your computer and use it in GitHub Desktop.
Save Houserqu/6aede0ac09e913f2bf96d232b79e9a57 to your computer and use it in GitHub Desktop.
各种文本转义

html 标签转义

value = value.replace(/&/g, "&");
value = value.replace(/</g, "&lt;");
value = value.replace(/>/g, "&gt;");
value = value.replace(/ /g, "&nbsp;");
value = value.replace(/"/g, '&quot;');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment