我从 ajax 调用返回了以下内容
{"dataList":[{"date":"August 27, 2013","text":"<a href=\"http:\/\/www.example.com\/test.aif\"
title=\"Click here to listen\" target=\"\">Click here to listen<\/a> to the test from
2013!"},],"record_count":3}
我通过循环将数据添加到屏幕...
$.each(data.dataList, function(index, element) {
$('#news_data').append($('<h1>', {
text: element.date
}));
$('#news_data').append($('<h2>', {
text: element.text
}));
});
结果是显示所有 html 而不是实际 URL 的页面。所以我的问题是:如何让它实际显示链接而不是 HTML?我应该以不同的格式返回数据吗?