Skip to content

Instantly share code, notes, and snippets.

@think2011
Created November 16, 2015 09:35
Show Gist options
  • Save think2011/96813ed93992159c242c to your computer and use it in GitHub Desktop.
Save think2011/96813ed93992159c242c to your computer and use it in GitHub Desktop.
反转义HTML
/**
* 反转义HTML
* @param str
* @returns {string}
*/
function decodeHtml (str) {
var temp = document.createElement('div');
temp.innerHTML = str;
return temp.innerText;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment