jq获取某个标签内的属性值:
$("#TeamPerformanceYearUl li:eq(0)").attr('data')

jq获取li或者td第一个属性(索引值从零开始)
$("#TeamPerformanceYearUl li:eq(0)")


通过td获取tr这样的父类节点
$('#applyPersonAddTablle1 tbody tr td').on('click', '.displayRight', function(){
  $(this).parent().parent().remove();
});

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-12-28
  • 2021-12-28
  • 2021-11-29
  • 2021-09-07
猜你喜欢
  • 2021-12-28
  • 2021-12-28
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-21
相关资源
相似解决方案