简体   繁体   中英

JQuery: How do I get a DID ID?

I have the following HTML:

<div class="house">...</div>

But in my code I dynamically insert in DIV ID's to make the code then look like this:

<div class="house" id="id_1">...</div>

Question : How can I get the DIV ID by only knowing the CLASS using JQuery? I've tried something like the following but it doesn't work.

$('.house').getID();
$('div.house')
  .each(function(index) {
    alert( 'id for this div.class #'+index+': '+$(this).attr('id') );
});

Use the jQuery.attr() method to get and set attributes.

var houseId = $('.house').attr('id');

Note: This will only get the last '.house' element in the DOM's id.

I believe that

$('.house').attr("id");

Should work. I didn't test it though.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM