我在这个论坛上长时间发布了两次这个问题,但没有得到任何帮助。请在这里查看代码。如果想要更多我会发布。
我在演示表的第一篇文章就在这里 append inner table as per outer table id through jquery
在第二篇文章中我把我的代码: https://stackoverflow.com/questions/17251157/filling-nested-listview-on-proper-place-with-json
经过多次审判,我通过此解决了这个问题
var table = $("dvCustomers1 table").eq(0).clone(true);
$(".sno", table).html(inncomm.find("SNo").text());
$(".name", table).html(inncomm.find("Name").text());
$(".dates", table).html(inncomm.find("Date").text());
$("#MainBox"+id).find("#dvCustomers1").append(table).append("<br />");
但是现在我遇到了另一个问题,即我的第10行之后的内部表重复它的数据两次,并且所有数据都添加到所有附加表中。严重的是没有得到这个.Pleas提出一些建议