for (var i = 0; i< g.length; i ++) {$(".th-bg:first").siblings().eq(i).children("td:first").append(\'<input type="button" value="BTTS">\')};
??
maloneleo88
2021-04-20 13:57:53 +08:00
@TomatoYuyuko 先给每第一个子元素加上类名, 然后给有 class 类名的直接加按钮 是这思路嘛?
twinsdestiny
2021-04-20 14:00:46 +08:00
@maloneleo88 var g = $(".th-bg:first").siblings(); for (var i = 0; i < g.length; i++) { g.eq(i).children("td:first").append('<input type="button" value="BTTS">') };