function getCSSPath(node) {
let parts = [];
while (node.parentElement) {
let str = node.tagName.toLowerCase()
if (node.id) {
str += `#${node.id}`;
parts.unshift(str);
break;
}
let siblingsArr = Array.prototype.slice.call(node.parentElement.childNodes);
let ind = siblingsArr.filter((n) => n.attributes).indexOf(node);
parts.unshift(str + `:nth-child(${ind + 1})`);
node = node.parentElement;
}
return parts.join(' > ');
}
原创文章,作者:carmelaweatherly,如若转载,请注明出处:https://blog.ytso.com/245438.html