1

プロトタイプ ライブラリで再実装したい jQuery のコードがあります。

// make external links open in popups
// this will apply a window.open() behaviour to all anchor links
// the not() functions filter iteratively filter out http://www.foo.com 
// and http://foo.com so they don't trigger off the pop-ups

jQuery("a[href='http://']").
      not("a[href^='http://www.foo.com']").
      not("a[href^='http://foo.com']").
      addClass('external');

jQuery("a.external").
      not('a[rel="lightbox"]').click( function() {
      window.open( jQuery(this).attr('href') );
      return false;
});

ここにリストされている jQuery の not() 演算子に相当するものを使用して、要素のコレクションを繰り返しフィルター処理するにはどうすればよいでしょうか?

4

1 に答える 1

4

フィルタリングは、次のような reject メソッドを使用して行うことができます。

$$('a').reject(function(element) { return element.getAttribute("href").match(/http:\/\/(www.|)foo.com/); }).invoke("addClassName", "external");
于 2008-09-17T18:05:22.353 に答える