How to get id from class
本问题已经有最佳答案,请猛点这里访问。
我想从类选择器中获取id名称。 我该怎么做?
1 |
在
您可以使用属性选择器
1 | $('.tab-pane.active').attr("id") |
使用
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"> |
或使用
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"> |
您可以使用
1 | $('.tab-pane active').attr('id'); |