我有一个有 5 行的表,我想动态添加另一行,我不想通过 onclick 事件添加该行。我希望自动添加该行,所以我选择了“post-header.bs.table”事件。但是现在我陷入了无限循环,浏览器因此而崩溃。我不知道为什么它会陷入无限循环,请告诉我如何解决这个问题。
代码:
$(function () {
$('#Table2').on('post-header.bs.table', function () {
$('#Table2').bootstrapTable('insertRow', {
index:5,
row: {
Data:{
practice: 'score',
input: '12345'
}
}
});
});
});
我需要传递行中的数据:{Data:{practice:'score',input:'12345'}} 格式。