gpt4 book ai didi

javascript - Bootstrap 表 : get the row data by row index

转载 作者:行者123 更新时间:2023-11-29 21:33:28 24 4
gpt4 key购买 nike

Bootstrap Table,一个字段有 anchor 标记,所以点击时我可以获得父行的数据索引。现在我想使用 data-index

获取完整的行数据
  $(document).on('click', '.delete_icon', function(event) {
var index = $(this).parent().parent().data('index');
//Get the complete row data by using the dataindex
// Row has three fields

});

我不能使用 data-uniqueid 来获取数据,因为我的唯一 ID 是像 #1:1、#1:2 等字符串

最佳答案

一键获取表格的行、索引、数据。

window.actionEvents = {
'click .dele_icon': function (e, value, row, index) {
alert('You click remove icon, row: ' + JSON.stringify(row));
console.log(value, row, index);
}
};

http://jsfiddle.net/wenyi/e3nk137y/39/

关于javascript - Bootstrap 表 : get the row data by row index,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35411822/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com