// 字符转义
html2Escape(sHtml) {
return sHtml.replace(/[<>&"]/g, function(c) {
return {
'<': '<',
'>': '>',
'&': '&',
'"': '"'
}[c];
});
}