$.post() を使用して json の結果を取得し、結果ごとにリストに出力できるようにしたいと考えています。
以下を使用すると、最後のjsonアイテムのみが表示されます
Jクエリ
$.post('/assets/inc/account-info.php', qString, function (data) {
console.log(data);
var datas = jQuery.parseJSON(data);
console.log(datas);
$("#note").append("<li>id=recordsarray_"+datas.id+"><a href='#"+datas.id+"'>"+datas.name+"</a></li>");
});