PHP
·
发表于 6年以前
·
阅读量:8496
const getIndex = el => {
if (!el) {
return -1
}
let index = 0
do {
index++
} while (el = el.previousElementSibling);
return index
}