目前產生 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中文網其他相關文章!