嗨专家需要帮助我在每个阵列中都有按钮,如编辑或删除 但我想要的是我想用可以在数据表中点击的行替换那些按钮
我尝试使用下面的代码,但只是单击文本而不是数据表中的行
$row = array();
$row[] = '<a href="javascript:void(0)" onclick="lihat_infostudent('."'".$infostudent->number."'".')"><tr><td><center>'."$no".'<center></td></a>';
答案 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;
}