当前生成 CSS 路径的方法可以改进以提高准确性和可读性。
原始函数:
var cssPath = function (el) { var path = []; while ( (el.nodeName.toLowerCase() != 'html') && (el = el.parentNode) && path.unshift(el.nodeName.toLowerCase() + (el.id ? '#' + el.id : '') + (el.className ? '.' + el.className.replace(/\s+/g, ".") : '')) ); return path.join(" > "); }
生成如下 CSS 路径:
html > body > div#div-id > div.site > div.clearfix > ul.choices > li
为了精确起见,对于没有 ID 的元素,路径应包含 nth-child():
html > body > div#div-id > div.site:nth-child(1) > div.clearfix > ul.choices > li:nth-child(5)
以下增强功能解决了这些问题:
var cssPath = function(el) { if (!(el instanceof Element)) return; var path = []; while (el.nodeType === Node.ELEMENT_NODE) { var selector = el.nodeName.toLowerCase(); if (el.id) { selector += '#' + el.id; path.unshift(selector); break; } else { var sib = el, nth = 1; while (sib = sib.previousElementSibling) { if (sib.nodeName.toLowerCase() == selector) nth++; } if (nth != 1) selector += ":nth-of-type("+nth+")"; } path.unshift(selector); el = el.parentNode; } return path.join(" > "); }
通过此增强功能,给定元素的 CSS 路径将更加精确和可读。
以上是## 我们如何提高 CSS 路径的准确性和可读性?的详细内容。更多信息请关注PHP中文网其他相关文章!