发布网友 发布时间:2022-04-23 23:15
我来回答
共1个回答
热心网友 时间:2023-10-13 08:21
nth-child选择器,注意下标从1开始$('#example tbody').on('click','tr td:nth-child(3)', function (e) {var name = $(this).text();alert(name);} );