我创建了一个包含各种数据的 JSON 文件:
[
{
"date": "17.06.",
"event": "The Stoles gig",
"url": "http://thestoles.com/"
},
{
"date": "25.06.",
"event": "The Editors release an EP",
"url": "http://theeditors.com/"
}
]
HTML 文件中的所有内容都正确呈现,但 URL 除外,它不显示为链接。
这是我的代码:
$(document).ready(function() {
$.getJSON('feeds.json', function(data){
$.each(data, function(i, item){
$('#feeds').append(item['date'] + item['event'] + item['url'] + "</br>");
});
});
});
有什么建议么?