我必須在jQuery中使用xml文件,並且jQuery不能與<
,>
,&
和其他代碼一起使用。我發現在谷歌這樣的代碼:恢復jQuery函數,從xml到html並返回
function escapeHtml(text) {
var map = {
'&': '&',
'<': '<',
'>': '>',
};
return text.replace(/[&<>]/g, function(m) {
return map[m];
});
}
它的工作原理,但現在我需要導出該文件,並將其與<
>
作爲文本返回,有沒有辦法恢復該回來嗎?
@RoryMcCrossan替換功能未啓用與< > – 2014-11-24 15:29:04