Ajax返回的json遍历取值并显示到前台的方法

今天小编就为大家分享一篇Ajax返回的json遍历取值并显示到前台的方法,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

使用$.each(data,function(i,n){});

可以用n.字段,取到想要的值。

$.ajax({ type: 'post', url: '/XXX', dataType: 'json', success:function(data){ var item; $.each(data,function(i,result){ item= "<tr><td>"+result['name']+"</td><td>"+result['age']+"</td></tr>"; $('.table').append(item); }); }, });

然后将item打入table里

<table> <tr><th>name</th><th>age</th></tr> </table>

以上这篇Ajax返回的json遍历取值并显示到前台的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wjxxyj.html