2011-01-19 3 views
0
function() { 
       $(this).animate({ width: 130 }, 300, function() { }); 
     }); 

를 필터링하지 내가 애니메이션 싶어은 그 폭이 그 리의 160 개JQuery와

덕분에 쉽게 읽을

답변

4
$('li').filter(function() { return $(this).width() != 160 }).animate({ width: 130 }, 300, function() { }); 

아니다 해야 할 일 :

$('li:not(:width(160))').animate({ width: 130 }, 300, function() { });