【JavaScript】previousElementSibling / nextElementSibling

説明

尋找前面 / 後面的元素

p#first 前面的元素
p#second 後面的元素
console.log(second.previousElementSibling); 
//<p id="first">​前面的元素​</p>

console.log(first.nextElementSibling); //<p id=​"second">​後面的元素​</p>​​