jQuery DataTables 行获取

datatables的官方例子中似乎没有提到表格双击和获取相应行号的功能;
经过探索可以按照以下方式实现: 
$("#example tbody tr").dblclick(function(e){
var index = $(this).context._DT_RowIndex; //行号
}
原文地址:https://www.cnblogs.com/Ivan-j2ee/p/3924060.html