$(document).on("dblclick","#employee_list_table tbody tr",function() {
var index = $(this).context._DT_RowIndex; //行号
var nTds = $('td', this);
});
$(function(){ $("table tr").click(function(){ alert("test"); });});