1

我正在尝试过滤所有具有 rel 属性的链接,然后更改该属性。我知道它应该很简单......但不能让它工作。

$('#selector a[rel]').each(function() {
  $(this).attr('rel', 'lightbox[auto_group999]');
});
4

1 回答 1

1
$(function(){ // DOM is ready to be manipulated

    $('#selector a[rel]').each(function() { // now the selector is retrieved
      $(this).attr('rel', 'lightbox[auto_group999]');
    });

});

jQuery API - .ready()

于 2013-03-01T19:53:57.803 回答