일부 문자열로 접히는 hrefend 선택 jQuery를 사용하여 모두 선택할 수 있습니까?"ABC"로 끝나는 링크? 예를 들어 이 링크를 찾으려면 $('a[href$="ABC"]')... Selector 설명서는 http://docs.jquery.com/Selectors 에서 확인할 수 있습니다. 속성의 경우: = is exactly equal != is not equal ^= is starts with $= is ends with *= is contains ~= is contains word |= is starts with prefix (i.e., |= "prefix" matches "prefix-...") $('a[href$="ABC"]:first').attr('title'); 이렇게 하면 URL이 ..