$('#example').on('click', 'tbody tr', function () {
var table = $('#example').DataTable();
// Check if any rows are selected
if (table.row(this, { selected: true }).any()) {
// if condition here, if not valid
if (!condition) table.row(this).deselect();
}
});
3条答案
按热度按时间js5cn81o1#
我想到两种方法
各1()次使用
2 eq()用法//我不确定这是否适用于表,也许index()可以
你可以读一下这些问题,它们应该会有帮助
jquery disable click until animation is fully complete
how to define condition with clicked objet's parent?
rryofs0p2#
是这样的吗?(不应该有点击功能的行增加
class="trDisable"
)或
e37o9pze3#
我知道这是一个老线索,但可能会帮助一些人。