如何用可以单击的数据表中的行替换按钮

时间:2017-01-13 10:23:54

标签: ajax codeigniter datatables

嗨专家需要帮助我在每个阵列中都有按钮,如编辑或删除 但我想要的是我想用可以在数据表中点击的行替换那些按钮

我尝试使用下面的代码,但只是单击文本而不是数据表中的行

$row = array();
            $row[] = '<a href="javascript:void(0)" onclick="lihat_infostudent('."'".$infostudent->number."'".')"><tr><td><center>'."$no".'<center></td></a>';

1 个答案:

答案 0 :(得分:0)

class分配给代码上的tr元素,并将onclick事件绑定到已定义的类。见下面的例子,

'<tr class="clickable_row" data-studentno="' . $infostudent->number . '"><td>....</td></tr>'

然后在你的js文件中,

$('.clickable_row').on('click', function() {
    lihat_infostudent($(this).data('studentno'));
});

最后在css中给出行的指针效果,

tr.clickable_row {
    cursor: pointer;
}