网页中输出HTML代码

>>>>>> mustache.js的解决方案

var entityMap = {
  '&': '&',
  '<': '<',
  '>': '>',
  '"': '"',
  "'": ''',
  '/': '/',
  '`': '`',
  '=': '='
};

function escapeHtml (string) {
  return String(string).replace(/[&<>"'`=\/]/g, function (s) {
    return entityMap[s];
  });
}

转载于:https://www.cnblogs.com/koala0521/p/7777077.html

你可能感兴趣的:(网页中输出HTML代码)