上图是我json数据的一部分,求大佬帮忙
1 回答
忽然笑
TA贡献1806条经验 获得超5个赞
function updatemessage() {
$(function() {
$.ajax({
type:"post",
url:"method/serachmessage.php",
dataType: 'json',
success:function(data){
$("#message").html('');
$.each(data,function(index,n){
$("#message").append("<li><a href='"+n.url+"'>"+n.title+"</a></li>");
});
}
});
});
}
刚刚解决了。
添加回答
举报
0/150
提交
取消