Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
jQuery のヘルプが必要です。現在、次のセレクターを使用しています。
$("#myDiv>a")
部門内の 50 個のリンクすべてを選択するのはどれですか?特定のリンクを選択から除外するにはどうすればよいですか? リンクの href に「cat -kennel」が含まれており、a(href*-cat-kennel) を使用しようとしましたが、機能しませんか??
:notセレクターを使用できます。
:not
$('#myDiv a:not([href*="cat-kennel"])');
フィルター ロジックがより複雑な場合は、 を使用できますfilter。
filter
$('#myDiv a').filter(function (index) { //return true/false based on specific logic //'this' points to the element });