如何在迭代迭代期间避免几个具有css类的链接

时间:2017-11-23 14:04:34

标签: jquery

我在页面中有很多链接,但很少有链接附加了很少的特定css类。我想避免那些附加 .noclass 的链接。

我知道这种方式可以迭代页面的所有链接

$(document).ready(function(){
    $('a').each(function(index) {
        alert(index + ': ' + $(this).text());
    });
});

现在告诉我,当我迭代页面中的所有链接时,如何提及避免连接 .noclass 的链接?

任何人都可以帮我举个例子。感谢

1 个答案:

答案 0 :(得分:0)

$(document).ready(function(){
    $('a:not(".noclass")').each(function(index) {
        alert(index + ': ' + $(this).text());
    });
});