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