JQuery获取tr中第一个td的值董德多2020年6月9日0 $(#table tr).each(function() { console.log($(this).find(td:first).text());});
JQuery为tr添加双击(dblclick)事件董德多2020年6月9日0 $(.table-double-click tbody tr).dblclick(function() {console.log($(this).find(td:first).text())});