关于jquery:如何从类中获取id

How to get id from class

本问题已经有最佳答案,请猛点这里访问。

我想从类选择器中获取id名称。 我该怎么做?

1
 

$(.tab-pane active)我需要它的id Basic


您可以使用属性选择器attr("id")

1
$('.tab-pane.active').attr("id")

使用attr()方法获取属性

1
$('.tab-pane.active').attr('id')

1
2
3
console.log(
  $('.tab-pane.active').attr('id')
);
1
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js">

或使用prop()获取id属性或从dom对象获取它。

1
2
3
$('.tab-pane.active')[0].id
// or
$('.tab-pane.active').prop('id')

1
2
3
4
5
6
7
console.log(
  $('.tab-pane.active')[0].id
);

console.log(
  $('.tab-pane.active').prop('id')
);
1
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js">


您可以使用.attr()获取元素的任何属性

1
$('.tab-pane active').attr('id');