我正在尝试使用rel属性过滤所有链接,然后更改该属性。我知道这应该很简单......但是不能让它发挥作用。
$('#selector a[rel]').each(function() {
$(this).attr('rel', 'lightbox[auto_group999]');
});
答案 0 :(得分:1)
$(function(){ // DOM is ready to be manipulated
$('#selector a[rel]').each(function() { // now the selector is retrieved
$(this).attr('rel', 'lightbox[auto_group999]');
});
});