问问题
6989 次
1 回答
5
从替换&
字符开始,然后替换其他字符。否则,您将从&
以前的实体(<
等)替换为&
string.replace(/&/g, '&amp;') //<= start with
.replace(/</g, '<')
.replace(/>/g, '>')
.replace(/"/g, '"')
.replace(/'/g, '&apos');
// ' may be "\\'", depends on how te OP wants to use it
[根据评论编辑&amp;
] 用于替换 & 字符
于 2012-07-19T07:44:13.213 回答