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.
我正在尝试过滤所有具有 rel 属性的链接,然后更改该属性。我知道它应该很简单......但不能让它工作。
$('#selector a[rel]').each(function() { $(this).attr('rel', 'lightbox[auto_group999]'); });
$(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()