Eksiksiz: kapsam polyfill
Olarak avetisk olan bahsedilen Seçiciler API 2 kullanımları :scope
yalancı seçiciye.
Bunun tüm tarayıcılarda (destekleyen querySelector
) çalışmasını sağlamak için işte polyfill
(function(doc, proto) {
try {
doc.querySelector(':scope body');
} catch (err) {
['querySelector', 'querySelectorAll'].forEach(function(method) {
var nativ = proto[method];
proto[method] = function(selectors) {
if (/(^|,)\s*:scope/.test(selectors)) {
var id = this.id;
this.id = 'ID_' + Date.now();
selectors = selectors.replace(/((^|,)\s*):scope/g, '$1#' + this.id);
var result = doc[method](selectors);
this.id = id;
return result;
} else {
return nativ.call(this, selectors);
}
}
});
}
})(window.document, Element.prototype);
Kullanım
node.querySelector(':scope > someselector');
node.querySelectorAll(':scope > someselector');
Tarihsel nedenlerden dolayı, önceki çözümüm
Tüm cevaplara göre
Node.prototype.find = function(selector) {
if (/(^\s*|,\s*)>/.test(selector)) {
if (!this.id) {
this.id = 'ID_' + new Date().getTime();
var removeId = true;
}
selector = selector.replace(/(^\s*|,\s*)>/g, '$1#' + this.id + ' >');
var result = document.querySelectorAll(selector);
if (removeId) {
this.id = null;
}
return result;
} else {
return this.querySelectorAll(selector);
}
};
Kullanım
elem.find('> a');