我正在使用此代码并输出正确的对象,但我无法从这些对象中获取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]
答案 0 :(得分:1)
您可以使用.map
:
var ids = $(this).parent().parent().siblings().children().map(function(e){
return this.id;
}).get();