$(document).ready(function() { $('#example').dataTable(); $('#example tbody').on('click', 'tr', function () { var name = $('td', this).eq(0).text(); alert( '你点击了 '+name+'这行' ); } );} );
本文共 270 字,大约阅读时间需要 1 分钟。
$(document).ready(function() { $('#example').dataTable(); $('#example tbody').on('click', 'tr', function () { var name = $('td', this).eq(0).text(); alert( '你点击了 '+name+'这行' ); } );} );
转载于:https://www.cnblogs.com/chengshuiqiang/p/4607223.html