87,987
社区成员
发帖
与我相关
我的任务
分享
ajax({
"type": "get",
"url": '115.28.142.80:9918/Service/BusinessManage/ArtideService.ashx?method=GetNews',//图片不清,有可能打错
"success": function(data) {
console.log(data)
var str='';
for(var i=0;i<8;i++){
str='<li><a herf="news/news_'+data[i].id+'.html"><span>'+data[i].Title+'</span><span>'+data[i].Date+'</span></a></li>'
//时间格式需要转换
}
$("#f1").html(str)
},
"error": function(XMLHttpRequest, textStatus, errorThrown) {
alert(XMLHttpRequest.statusText + ':' + XMLHttpRequest.responseJSON.message);
}
});