我创建了一个数据表并在所选选项上动态添加了行。因此,每次更改选项时,我都需要重新初始化dataTable。我将这段代码放在$("#selectOption")中.change(function(){});因为每次更改选项时我都需要调用此代码。
merchantID
merchantReferenceCode
recurringSubscriptionInfo_status—set to cancel.
recurringSubscriptionInfo_subscriptionID

以上代码无效。需要帮助
提前致谢
答案 0 :(得分:0)
$ not defined error:
put your jquery file on top of every other file into your Html.
var Table = $('#example').DataTable( {
"scrollY": "500px",
"scrollCollapse": true,
"paging": true,
"lengthChange": false,
"searching": true,
"ordering": true,
"info": true,
"bDestroy": true,
"autoWidth": true,
"aLengthMenu": [[-1], ["All"]],
});
每次从后端第一个清除表中获取数据然后添加数据行
Table.fnClearTable();
Table.fnAddrow([//your data]);