$.ajax({
url: 'your/url',
type: 'post',
dataType: 'json',
success: function(o){
if(o.result){
$('#table').prepend('<tr><td>'+o.data.username+'</td></tr>');
}
}
})
//或者
new Request.JSON({
url: 'your/url',
method: 'post',
onSuccess: function(o){
if(o.result){
new Element('tr', {'html': '<td>'+o.data.username+'</td>'}).inject($('table'));
}
}
}).send();