gistfile1.txt 插入到最前边var html = render('#template-add',{});$('#table-body').prepend(html);插入到最后边var html = render('#template-add',{});$('#table-body').append(html);
插入到最前边
var html = render('#template-add',{});
$('#table-body').prepend(html);
插入到最后边
var html = render('#template-add',{});
$('#table-body').append(html);
