js 根据元素生成 css path 路径


    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

(0)
上一篇 2022年4月18日
下一篇 2022年4月18日

相关推荐

发表回复

登录后才能评论