/g, "&._html 字符编码函数">
当前位置:   article > 正文

js html编码和解码函数(html实体和html字符串)_html 字符编码函数

html 字符编码函数
  1. //html编码,字符串转为实体
  2. function htmlEncodeByRegExp(str) {
  3. var temp = "";
  4. if (str.length == 0) return "";
  5. temp = str.replace(/&/g, "&");
  6. temp = temp.replace(/</g, "&lt;");
  7. temp = temp.replace(/>/g, "&gt;");
  8. temp = temp.replace(/\s/g, "&nbsp;");
  9. temp = temp.replace(/\'/g, "&#39;");
  10. temp = temp.replace(/\"/g, "&quot;");
  11. return temp;
  12. }
  13. //html实体解码,实体转为字符串。
  14. function htmlDecodeByRegExp(str) {
  15. var temp = "";
  16. if (str.length == 0) return "";
  17. temp = str.replace(/&amp;/g, "&");
  18. temp = temp.replace(/&lt;/g, "<");
  19. temp = temp.replace(/&gt;/g, ">");
  20. temp = temp.replace(/&nbsp;/g, " ");
  21. temp = temp.replace(/&#39;/g, "\'");
  22. temp = temp.replace(/&quot;/g, "\"");
  23. return temp;
  24. }

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/92968
推荐阅读
相关标签
  

闽ICP备14008679号