如何使用jquery获取兄弟姐妹的id

时间:2016-06-29 14:17:09

标签: jquery

我正在使用此代码并输出正确的对象,但我无法从这些对象中获取id。这是代码:

console.log($(this).parent().parent().siblings().children());

输出是:

[div#first-example.box-prop.top-widget,div#second-example.box-prop.top-widget,div#third-example.box-prop.top-widget,prevObject:init [ 3],上下文:i.fa.fa-times.close-x]

1 个答案:

答案 0 :(得分:1)

您可以使用.map

var ids = $(this).parent().parent().siblings().children().map(function(e){
    return this.id;
}).get();