当我运行我的代码时,我收到一个错误:
无法读取未定义的属性“长度”。
在AJAX成功之后我调用了这个函数。请求帮助我。
var model = response;
var row = $("#tblGet tr:last-child").clone(true);
$("#tblGet tr").not($("#tblGet tr:first-child")).remove();
$.each(model.NcdexClass, function() {
var ncdex = this;
$("td", row).eq(0).html(ncdex.script);
$("td", row).eq(1).html(ncdex.expiryDate);
$("td", row).eq(2).html(ncdex.measure);
$("td", row).eq(3).html(ncdex.ltp);
$("#tblGet").append(row);
row = $("#tblGet tr:last-child").clone(true);
});