编辑:
我想为数据表中的记录创建自定义编辑/删除功能。
在数据表代码中我有:
$('#users tbody').on( 'click', 'tr', function () {
// get the row id here and send it to button
} );
当用户选择一行时,我想获取行ID并将其发送到按钮:
<a href="<?php echo site_url('main/delete/$id')?>" data-toggle="modal" data-target="#deleteModel" role="button" class="btn-u btn-block">Delete</a>
$ id(来自按钮链接)=用户选择的行的ID。
答案 0 :(得分:1)