答案 0 :(得分:2)
HTML编码HTML实体。特殊字符的HTML实体&是&
所以HTML编码为& hearts;是♥
。
答案 1 :(得分:0)
您必须对所有特殊字符进行编码(例如&
),here is a jquery function that will do it for you
答案 2 :(得分:0)
您可以使用strreplace,然后将其替换为图像,html符号或任何其他内容
答案 3 :(得分:0)
您可以调用以下功能:
function htmlEncode(value){
if (value) {
return jQuery('<div />').text(value).html();
} else {
return '';
}}