我正在使用yii2-multiple-input,在使用beforeDeleteRow如下所示的 javascript 事件删除项目时一切都很好。
jQuery('#wtabularbotellas').on('beforeDeleteRow',function(e, row, currentIndex) {
// This throw the number of rows instead how do I get the current Index?
alert(currentIndex);
});
但我无法捕获该行的 ID 号。我尝试使用row对象和currentIndex变量来完成它,但没有结果,因为后者只返回行数而不是我要查找的索引。
拉丁的传说
相关分类