我该如何用伪类查询多个选择器来实现普通的JS?

所以我有这个功能:

function populate(selector,snippet,location) {
    var OGsnippet = $('snippet#' + snippet).children().clone().appendTo(selector);
}

它被这样称呼:populate('section#main articles article:not(".ad")','socmed-articles');populate('section div.articles.news article:not(".ad")','socmed-articles');

我正在尝试将其转换为原始javascript。我尝试过:

function populate(selector,location) {
    var snippet = (document.querySelector('snippet#' + snippet).children)[0].cloneNode(true); //printing snippet yields a span with a class socmed-articles
    document.querySelector(selector).append(snippet);
}

但是我得到Uncaught DOMException: Failed to execute 'querySelector' on 'Document': 'section#main articles article:not(".ad")' is not a valid selector

gsephiroth 回答:我该如何用伪类查询多个选择器来实现普通的JS?

CSS选择器:not不接受",需要删除它们才能使用该选择器。

document.querySelector('section#main articles article:not(.ad)');
本文链接:https://www.f2er.com/1362380.html

大家都在问