[jQuery] .is()
.is() is 매서드는 셀랙터의 대상을 다시 셀렉터로 비교하여 맞으면 true, 아니면 false를 반환한다.예를들면 다음과 같다 - HTML list item 1 - one strong tag list item 2 - two strong tags list item 3 list item 4 list item 5 - jquery $( "li" ).click(function() { var li = $( this ), isWithTwo = li.is(function() { return $( "strong", this ).length === 2; }); if ( isWithTwo ) { li.css( "background-color", "green" ); } else { li.css( "background-c..