使用一个香草< table>这样做很简单,但是我不明白为什么这不能与jQuery DataTables一起使用.
$('#myTableId').delegate('tbody > tr > td','click',function ()
{
// 'this' refers to the current <td>,if you need information out of it
window.open('http://example.com');
});
您可能还需要一些悬停事件处理,以便在点击一行之前给予用户视觉反馈.