$.each 報錯
dataType:'json',
cache:false,
error:function(){
alert('error');
},
success:function(result){
???var?html?=?'';
???console.log(result);//這里輸出內容正常
??? ???$.each(result.data,function(key,value){
???html?+=?'<li>'+value.title+'</li>';
???});?
????
??alert(html);
},

2017-02-06
jq什么版本的???