我使用Jquery Code从桌面上的项目中提取超链接,并将它们重新设置为中的源。

$("article a").each(function (idx, ele) {
    var newele = $(ele).clone();
    newele.text($(ele).prop("title"));
    $("aside div.article__source").append(newele);
});


是否可以从此规则中排除某些元素/类?该类的超链接被忽略。

谢谢你的帮助。

西尔维奥

最佳答案

对要忽略的类使用:not

$("article a:not(.ignore)").each(...);

09-11 20:39