Jquery获取属性值

Posted ServerSocket

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Jquery获取属性值相关的知识,希望对你有一定的参考价值。

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();
});

以上是关于Jquery获取属性值的主要内容,如果未能解决你的问题,请参考以下文章

jquery attr()无法获取属性值问题

jquery怎么获取checked属性

jquery获取(设置)节点的属性与属性值

jQuery 按属性值获取/选择元素

Jquery获取属性值

JQuery获取属性值