select<a>哪个href以某个string结尾

是否有可能使用jQuery来select所有以“ABC”结尾的<a>链接?

例如,如果我想find这个链接<a href="http://server/page.aspx?id=ABC">

  $('a[href$="ABC"]')... 

select器文档可以在http://docs.jquery.com/Selectorsfind

对于属性:

 = is exactly equal != is not equal ^= is starts with $= is ends with *= is contains ~= is contains word |= is starts with prefix (ie, |= "prefix" matches "prefix-...") 
 $('a[href$="ABC"]:first').attr('title'); 

这将返回具有以“ABC”结尾的URL的第一个链接的标题。

 $("a[href*='id=ABC']").addClass('active_jquery_menu'); 
 $("a[href*=ABC]").addClass('selected');