方法 1:
jquey を使用して取得します、var row = $('.edit').parent().parent();
欠点: レンダリングしないとデータではなく、dom 上のものしか取得できません
方法 2:
まず行番号を要素にバインドします
$('#example'"columns""data":"name", "orderable": , "searchable": ,"render" : '<button id="btnEdit" data-rowindex="'+meta.row+'">编辑</button>'
次に、要素に基づいて行番号を抽出します
var rowIndex = $('#btnEdit').attr('data-rowindex') ;
最後にデータを取得します
$('#userTable').DataTable().rows(rowIndex).data()[0];
以上がDataTable を使用して、指定した要素の行データを取得する方法について説明します。の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。