সম্পূর্ণ: স্কোপ পলিফিল
অ্যাভেটিস্ক হিসাবে সিলেক্টর এপিআই 2 উল্লেখ করেছে :scope
সিউডো-সিলেক্টর।
সমস্ত ব্রাউজারে এই কাজটি করা (এটি সমর্থন querySelector
) এখানে পলিফিল
(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);
ব্যবহার
node.querySelector(':scope > someselector');
node.querySelectorAll(':scope > someselector');
Reasonsতিহাসিক কারণে, আমার আগের সমাধান
সমস্ত উত্তরের উপর ভিত্তি করে
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);
}
};
ব্যবহার
elem.find('> a');