我正在使用jPlayer和jQuery,通过AJAX获取播放列表项。在向播放列表(jPlayerPlaylist)声明或添加新项目时,我遇到了这样的错误:
未捕获的TypeError:无法使用'in'运算符来搜索...
所以我在做什么: Jquery的:
function my_track(){
$.get("ajax.php?my_fav_track=1", function(data)
{
myPlaylist.add(data);
}
Ajax的回应:
{
"title":" Florence And The Machine - <span class='artist_t'>Got The Love (Revolvr Remix)</span> <span class='dur'>5:40</span>",
"mp3":"http://xxx.xx/uploads/music/6/67/1376936969_florence-and-the-machine_-_.mp3"
}
我做错了什么?任何帮助赞赏:)
好的,用户$ .getJSON:
$.getJSON('ajax.php?my_fav_track=1', function(data) {
alert(data);
});
看着网络,一切都已加载但没有提醒:(