DataTables怎么给某一列加上click事件

DataTables的数据是动态生成的,
$('#example tbody').on('click','tr', function () {
var name = $('td', this).eq(3).text();
alert(name);
} );
这种是点击一行的任何一列都会弹出name值,我现在情况是,想点击每一行的第三列都会弹出一个框,点击其他列不会有反应求指教啊

nth-child选择器,注意下标从1开始

 $('#example tbody').on('click','tr td:nth-child(3)', function (e) {
   var name = $(this).text();
    alert(name);
} );
 #example tbody tr td(3)

var name = $(this).find("td").eq(3).text();