我尝试在每行插入div
时添加一个JQuery动画。我的代码如下所示,它完全正常但没有动画:
var table=$("<table width='100%' border='0' cellspacing='0' cellpadding='10' font-size='16px'id='#my_table'>");
$.each(json.records, function(idx, item) {
table.append(
$('<tr class="tabrowstyle">').append(
$('<td width=10%>').text(item.A),
$('<td width=20%>').text(item.B),
$('<td width=20%>').text(item.C),
$('<td width=20%>').text(item.D),
$('<td width=10%>').text(item.E),
$('<td width=20%>').text(item.F)
).append('</tr>'));
});
$(this).addClass('tabrowstyle');
table.append("</table>").appendTo("#div_content");