문제

How do you increment the value of a data attribute for all of the siblings of an object?

This works:

$('#id').data('position')+1

but this doesn't

$('#id').siblings().data('position') + 1;
도움이 되었습니까?

해결책

Because .siblings() return an array of elements, therefore .data may not work. You have to iterate all element one by one like this

$('#id').siblings().each(function(){
   $(this).data('position') + 1; ///
})

다른 팁

you need to iterate through siblings

var siblings=$('#id').siblings();
siblings.each(function(i,v){
   alert($(this).data('position') + 1);
   //do your stuff
})
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top