标签: javascript jquery html html-entities
关注this question(我遇到同样的问题),如何将具有 等实体的字符串转换为字符串,将这些实体转换为 ,使用javascript / jquery?< / p>
 
答案 0 :(得分:1)
str.replace(/$#160/g, ' ');
答案 1 :(得分:1)
php.js对此非常有用:
http://phpjs.org/functions/html_entity_decode:424 http://phpjs.org/functions/htmlspecialchars_decode:427 http://phpjs.org/functions/htmlentities:425